__label__enhancement Exception handling # Description The methods that use try/catch blocks are quite limiting. Simply throw the exceptions and let users handle them. New idea: an exception handler wrapper class? # Technical Information | Information | Value | |--|--| | Operating System | Irrelevant | |Architecture | Irrelevant | | JavaEssentials Version| 1.2.2 Beta 1 | "__label__enhancement Subpasses in MSL and HLSL Sorry for all the issues 😅 Given the following GLSL: ```glsl #version 450 core #extension GL_ARB_separate_shader_objects : enable layout(input_attachment_index = 0, set = 0, binding = 0) uniform subpassInput test; layout(location = 0) out vec4 out_color; void main() { out_color = subpassLoad(test); } ``` `../glslang-build/standalone/glslangvalidator test.frag -V; and ../spirv-cross/spirv-cross frag.spv --msl` creates the following MSL (silently fails with `unknown_texture_type`): ```metal #include #include using namespace metal; struct main0_out { float4 out_color [[color(0)]]; }; fragment main0_out main0(unknown_texture_type test [[texture(0)]]) { main0_out out = {}; out.out_color = test.read(int2(0)); return out; } ``` `--hlsl` with a high enough shader model will throw an exception. I realize this is because `DimSubpassData` is not handled at the moment for [MSL](https://github.com/KhronosGroup/SPIRV-Cross/blob/master/spirv_msl.cpp#L3128) and [HLSL](https://github.com/KhronosGroup/SPIRV-Cross/blob/master/spirv_hlsl.cpp#L262). I was wondering whether implementing this in MSL should be as straightforward as the HLSL comment suggests, or if you have any thoughts about how it should be handled." __label__enhancement Collect new discovered nodes Collect new added devices with timestamp and present them in the web interface. Also let the daemon cache information from nodes on interfaces. __label__enhancement Lock property : several properties at once "__label__bug Return default location type label if custom label is not defined ### Steps to reproduce the error Two different bugs which are related, so I'm filing them here. [OPBEAT-DEMO #128](https://opbeat.com/cadasta/platform-demo/errors/128/) 1. Create a project using a questionnaire that is missing the `location_type` field. 2. Create a new location using the web interface. 3. Access the async location endpoint (http://localhost:8000/async/organizations/{org}/projects/{project}/spatial/). [OPBEAT-PROD #50](https://opbeat.com/cadasta/platform-prod/errors/50/) 1. Create a project using a questionnaire has the `location_type` field but is missing the `PA` choice for parcel. 2. Create a new location using the web interface using location type _parcel_. 3. Access the async location endpoint (http://localhost:8000/async/organizations/{org}/projects/{project}/spatial/). ### Actual behavior - For case OPBEAT-DEMO #128, `DoesNotExist: Question matching query does not exist.` is thrown. - For case OPBEAT-PROD #50, `DoesNotExist: QuestionOption matching query does not exist.` is thrown. ### Expected behavior The default label should be used in both cases and the API should respond successfully. " __label__enhancement Randomize: remove sliders "__label__bug [TW-417] JSON export has extra commas (on 2.1.1) _Thomas Sullivan on 2012-07-31T13:03:33Z says:_ Searching has shown only the changelog (http://taskwarrior.org/projects/taskwarrior/wiki/Changelog) stating a bug was fixed regarding misplaced commas in the JSON exports. (However no ID number of the bug is given.) I have updated to version 2.1.1, and attached is my task diag output as well as some of the sample JSON that is given after an export. That fails, I believe due to the misplaced commas, I believe. You can see the if you open the file in an editor, they look like: ,,,, or the commas at the end of each line. Regardless, the attached JSON export output fails jsonlint.com as well. Thanks for any thoughts or insight. On deeper insight, it would seem that maybe this has to do with missing or ""orphaned/abandoned"" UDAs. Going to try this with the UDAs that are no longer used in that task, but have them in the .taskrc again anyway. See also: http://taskwarrior.org/boards/1/topics/2460 My task diag output: http://taskwarrior.org/attachments/530/task.diag.txt" "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/f0tTfKnUD5OsMzSmw6W6GDH6ct0GKdTKlQXUu-a0blX7zZ7dSnHP0e2dDArpbGE50/HVZLhrJp7DvJbrHJCo9jN5k-kWZHS6TADU__3u3Jg0igSPhIEJsDMjSL0MItkwbm0/4ywbi0X4evZqrIq-NyiBek4fFY9wv_hKuFSMgr5Y1Ws1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug Topic mining fails with UnicodeEncodeError ``` message --------------------------------------------------------------------------------------------------------------------------- UnicodeEncodeError: 'utf-8' codec can't encode character '\udf33' in position 26352: surrogates not allowed + + During handling of the above exception, another exception occurred: + + Traceback (most recent call last): + File ""/home/mediacloud/mediacloud/mediacloud/mediawords/util/web/user_agent/response/response.py"", line 68, in __repr__+ for key, value in sorted(self.headers().items()): + SystemError: PyEval_EvalFrameEx returned a result with an error set + ``` " "__label__enhancement feature request: local invoke inside action context if you're in an action context, eg `get action foo`, i suggest making `local invoke` work." "__label__bug Preflight and non-batching requests throw an error The generated custom http handler does not handle preflight requests and cors headers. It also always returns response in a batch (as a json array) even when a single GraphQL request is sent. [Cors](https://github.com/rs/cors) is a good library to handle cors headers & preflight requests. This, however, will add additional dependency for a user who's using the custom generated http handler. " "__label__enhancement %capture --append var `%capture --to var` current capture output from a cell, optionally parse it as json or csv, and save the results to `var`. I just had a case where I would like to capture output from multiple cells to a variable so something like ``` %capture --append var ``` would be useful. Here `--append var` would be equivalent to `--to var` is `var` does not exist. Otherwise `--append var` will append the captured text to `var`, with type matching type of existing `var`. That is to say, `text` to `text`, `DataFrame` appended to `DataFrame` ..." "__label__question Avoiding the default NotEmpty::IS_EMPTY validation message. I have a form extending `Zend\Form\Form` implementing the `Zend\InputFilter\InputFilterProviderInterface`. One of my elements in my form is a `Radio` with some values and in my `InputFilterProvider` spec I have a `NotEmpty` validator with a custom message. Then, in my view I am using the `FormRadio` view helper to render the element which of course, also renders errors. The problem, is that if the user submits the form witout selecting a radio option, my validators are not used and instead the default `isEmpty` message is used from the `NotEmpty` validator. There is no way to bypass or customize this as the logic prevents any other use. Either, [it doesn't have a value but isn't required, or it doesn't have a value, is required, and then fails with the default message](https://github.com/zendframework/zend-inputfilter/blob/master/src/Input.php#L406-L415). Neither works for my use case as the message is not very nice to the user. Unless I'm going to check for the default message or manually set the error when it isn't valid in my controller, I'm not sure what the best course of action is aside from making a PR that adds some type of customization to both `Input` and the factory. " __label__bug App throws 'TargetInvocationException' "__label__bug The ""Publish..."" button is disappeared After last update from master the ""Publish..."" button is disappeared. ![image](https://user-images.githubusercontent.com/17744188/36027574-f71a5c16-0dac-11e8-9eb7-4ca0d3f154dd.png) console: ![image](https://user-images.githubusercontent.com/17744188/36027728-75e5bedc-0dad-11e8-831c-dabd2165ca92.png) reproduced on windows" "__label__bug dependency() - main keyword argument gives warning Running meson with https://github.com/mesonbuild/meson/tree/master/test%20cases/frameworks/2%20gtest gives: ``` The Meson build system Version: 0.44.0 Source dir: /home/afg/Downloads/meson/test cases/frameworks/2 gtest Build dir: /home/afg/Downloads/meson/test cases/frameworks/2 gtest/build Build type: native build Project name: gtest Native C++ compiler: c++ (gcc 7.2.1) Build machine cpu family: x86_64 Build machine cpu: x86_64 WARNING: Passed invalid keyword argument ""main"" in meson.build line 3. This will become a hard error in the future. Dependency GTest found: YES (prebuilt) WARNING: Passed invalid keyword argument ""main"" in meson.build line 4. This will become a hard error in the future. Dependency GTest found: YES (prebuilt) Build targets in project: 2 Found ninja-1.8.2 at /usr/bin/ninja ``` Despite the warning, the `main` argument does affect wheter `-lgtest_main` is present on the compiling command. Probably related: #665" "__label__enhancement Refactor `train_builtin_model()` to make each built-in model a separate method Currently, all built-in models in RSMTool Refactor are written out in an `if` statement in a single method --`train_builtin_model()` -- in the `Modeler` class. It would be good to break these out into separate methods to (1) make the code more readable, and (2) make it easier to override these methods if we want to use a different implementation of any model in a separate branch." "__label__enhancement RecordField w/ timestamp.field should support nested timestamps Currently for the `RecordField` configurations, I see that most use cases are for a top-level `timestamp.field`. There should be support for dot-notated nested fields. Without having to go though a `ExtractValueFromStruct` transformation For example, ```json ""timestamp.field"": ""header.time"" ```" __label__bug Invoice preview doesn't display seller and buyer fields properly ![image](https://user-images.githubusercontent.com/10659/35767428-6d0c12a4-08ec-11e8-9db5-7f4446897859.png) "__label__bug Fix Error: Can't set headers after they are sent On hitting `/playground`, ``` ❯ yarn dev yarn run v1.3.2 $ nodemon src/app.js --exec babel-node [nodemon] 1.12.5 [nodemon] to restart at any time, enter `rs` [nodemon] watching: *.* [nodemon] starting `babel-node src/app.js` 🚀 Server listening on port 8080... Error: Can't set headers after they are sent. ```" "__label__enhancement Add setting to disable/log stacktrace I would like an option to suppress stacktraces from being returned by the watchman views. Add the following new settings: `WATCHMAN_RENDER_STACKTRACE = (True|False)` - If enabled, watchman will return the stacktrace in the json and dashboard views. `WATCHMAN_LOG_STACKTRACE = (True|False)` - If enabled, watchman will log stacktraces to the django logger. " __label__enhancement Add check for internet facing ELBs Another extra check for internet facing ELBs. Probably environment specific for people but if you generally use internal resources this could be a red flag. __label__bug update sublime config __label__bug Modificar mapa multiscope para que use las coordenadas del multiscope y no las hard coded Los cambios deben realizarse en https://github.com/GeographicaGS/UrboCore-www/blob/8a8899cc216fa8fc9b6ce08135830fdb8645bd03/src/js/View/ScopeListView.js "__label__enhancement Dynamic image heros should be enabled with a non-boolean shortcode attribute Image heros can be made dynamic by setting the shortcode attribute `dynamic=true`. This is okay, but it doesn't allow for future animation options. The proposal is to have something like `animation=""slide""`, which would make selecting other animations possible." __label__enhancement WS - plot against fractional hour time instead of meaningless index make weather station histogram plotting physically meaningful. __label__enhancement Status Bar: Add git branch status Splitting out from #201 - it'd be great to see the current git branch as an optional setting in the status bar. This is one item I miss with the new status bar from #201. __label__enhancement Request - GeoLite2 User Data Plexpy offers GeoLite2 location data for each user/session. It would be great to get the same data shown in User/Last Known IP/Location Details (in Popup) if available via the plexpy API. This would allow us to map sessions/users on the Grafana Worldmap Plugin. __label__enhancement Compilation warnings on install scripts We should disable the warnings in client install and keep them in development installation only. This way we can think of resolving the warnings in development environment but don't bother the users. "__label__bug browsing through spectra with plabel does not work After loading a plabel file into plabel one sees the first spectrum, but when browsing through them the spectrum does not change, only annotation changes if it fits to a peak. browsing through mgf files works though, but annotation is obviously missing. " __label__question Is there a way to authenticate the video stream? | Required Info | | |---|---| | Camera Model | R200 / F200 / SR300 / ZR300 / D400 | | Firmware Version | | | Operating System & Version | Ubuntu 16.04 | | Kernel Version (Linux Only) | 4.4 | | SDK Version | 2.9.1 / latest | I'm looking to use the RS camera for a secure application in an Intel SGX enclave. I would like to establish a secure authenticated connection to the camera for the video streams. Is there a way to do that using librealsense? "__label__bug C# 7.2 new feature support: In-parameters causing error: Error extracting metadata for (...) Unable to generate spec reference for !: **DocFX Version Used**: 2.30 **Template used** default **Steps to Reproduce**: Sample: [files.zip](https://github.com/dotnet/docfx/files/1667899/files.zip) Create a new project, set metadata source to a .cs-file with this: ``` using System; namespace Namespace { public class Test { public Foo(int i, in ControlTransform transform) { } } } ``` Run ''docfx metadata'', get the following error: ``` [18-01-26 01:49:47.597]Error:Error extracting metadata for C:/Dev/Projects/Test/DocFX/test.cs: Unable to generate spec reference for !: 0 Warning(s) 1 Error(s) ``` If ""in"" is removed for second parameter in Foo, it works. Also, the first dummy parameter is removed, it works. " "__label__enhancement support for window selection based on con_mark Hey! I'd love to see support for applying and recalling a window based on con_mark (https://i3wm.org/docs/userguide.html#vim_like_marks). That would allow raiseorlaunch to be used in situations where the window title changes regularly, and the window class is not unique enough. A common situation would be webpages in a web browser. As a concrete example, I can do this: ``` raiseorlaunch -e ""firefox inbox.google.com"" -t "".*.*"" -i -c firefox ``` And things work as long as I don't navigate away from google inbox (which is fine). But if i try to do that with the aws console: ``` raiseorlaunch -e ""firefox signin.aws.amazon.com"" ... ``` The aws console does not provide a consistent window title, so there is no way to get the window back. If raiseorlaunch supported con_marks we could do something like: ``` raiseorlaunch -e ""firefox signin.aws.amazon.com"" -m AWS ``` Then `raiseorlaunch` would mark the window on launch and we could recall the window based on the con_mark. Thanks so much! " __label__enhancement Add styled-components ThemeProvider to styleguide See: https://github.com/styleguidist/react-styleguidist/blob/master/docs/Thirdparties.md#adding-styled-components-themeprovider "__label__bug Bug in BuildDeployWindow ## Overview When checking for the current Windows 10 SDK version in HoloToolkit.Unity.BuildDeployWindow in lines 309-329 the correct and isntalled version is not found if there is only one folder in C:\Program Files (x86)\Windows Kits\10\Lib ## Expected Behavior If there exists a folder with the name ""10.0.16299.0"" in C:\Program Files (x86)\Windows Kits\10\Lib nothing bad shoul happen. ## Actual Behavior If ONLY the one folder with the name ""10.0.16299.0"" exists unity throws the error detailed in line 328. ## Reason of Error The variable ""currentSDKVersionIndex"" is initialized with 0. Then the already mentioned folder is searched. But there is only the one folder in C:\Program Files (x86)\Windows Kits\10\Lib then both conditions in lines 313-323 result in the variable staying 0 (because length (1) - 1 = 0 as well as the index being 0). When the index is checked in line 326 an error is falsly detected. ##Steps to Fix Initiate the variable ""currentSDKVersionIndex"" with -1 and change the check in line 326 to checking against -1. Neither the index of the folder (if found) nor the number of subfolders - 1 (if any exist) can be negative. ## Unity Editor Version 2017.3.0f3 ## Mixed Reality Toolkit Release Version 2017.2.1.1" "__label__enhancement [TW-233] Decrementable recurring tasks _Bryce Harrington says:_ Frequently I have huge tasks that I make tractable by just doing a portion of it each day and gradually work it down to zero. I'd like to be able to model this in taskwarrior. A use case would be, I have 1000 emails in my INBOX, and want to reduce this to zero, but it's too much to go through in one day. I also get dozens of new emails each day. So I set up a task, ""Clear INBOX by 10 to 990"" set to recur daily starting tomorrow. Tomorrow, lets say I get 24 new emails, giving me a total of 1024, so I need to take care of 34 to achieve 990. I do so, and mark this instance of the recurring task done. The next instance will be generated as ""Clear INBOX by 10 to 980"". Etc. Some other use cases: * Reading pages from a lengthy book * Processing database requests * Reviewing/addressing a bunch of comments from a lengthy text file So, this feature is much akin to a recurring task that repeats until: some date, except that it's a countdown to zero (or to some other fixed number), which is quantifiable in some numerical fashion other than date." __label__enhancement Add icon set "__label__bug 4.0 Group view: freeze when organizing groups with drag&drop JabRef version 4.0 on Mac OS Sierra 10.12.6 Steps to reproduce: 1. do a few drag&drops to reorganize groups 2. at some point (often after only 1 or 2 group moving) nothing happens when reorganizing groups. 3. after a few unworking tries, application freezes " "__label__bug Handle non-standard Zenvia callbacks when received SMSes are empty ## Error in busca-ativa-escolar-api **ErrorException** in **POST /api/v1/integration/sms/on_receive** trim() expects parameter 1 to be string, array given [View on Bugsnag](https://app.bugsnag.com/lqdi/busca-ativa-escolar-api/errors/597d7c924f284700185d2d09?event_id=597d7c924f284700185d2d08&i=gh&m=ci) ## Stacktrace app/SMS/Handlers/Zenvia.php:72 - Illuminate\Foundation\Bootstrap\HandleExceptions::handleError app/SMS/Handlers/Zenvia.php:72 - BuscaAtivaEscolar\SMS\Handlers\Zenvia::handle app/SmsConversation.php:316 - BuscaAtivaEscolar\SmsConversation::handleRequest app/Http/Controllers/Integration/SmsConversationController.php:36 - BuscaAtivaEscolar\Http\Controllers\Integration\SmsConversationController::on_message_received [View full stacktrace](https://app.bugsnag.com/lqdi/busca-ativa-escolar-api/errors/597d7c924f284700185d2d09?event_id=597d7c924f284700185d2d08&i=gh&m=ci) *Created automatically via Bugsnag*" "__label__enhancement Auto snap shot of the ""All Digitized Newspapers"" List Request for new functionality to automatically snapshot a .txt file and .csv file of the ""All Digitized Newspapers"" report on the first day of every month. The files should be emailed (ndnptech@loc.gov) or stored somewhere on a server. (Either would be acceptable.) This functionality will be used to keep monthly statistics and would be helpful now that we do incremental data ingests. http://chroniclingamerica.loc.gov/newspapers.txt http://chroniclingamerica.loc.gov/newspapers.csv " __label__enhancement Support INSTEAD 3.2.0 __label__bug standard clock cult borgs can't abscond to Reebe the other modules get the scripture but standard doesn't "__label__enhancement Outdated dependencies `yarn upgrade-interactive` reports the following: " __label__bug Windows distribution 0.4.0 shuts down after opening without a comment "__label__enhancement ECMA 6 Support Feature Request: Support for ECMA 6. i.e. block scoping, arrow functions, template literals, etc." "__label__bug [TW-346] truncated sentence in task-sync(5) manpage _Jakub Wilk on 2014-01-19T21:36:18Z says:_ The single quote is a controlling character when it appears at the beginning of a line. As a consequence, one of the task-sync(5) sentences was rendered like this:
 You can even do this using shell scripts so  that  every  task command is preceded by a ’pull’ and followed by a 
The attached patches fixes this bug." "__label__bug [HttpFoundation] remaining UploadedFile size deprecation notices | Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | no | RFC? | no | Symfony version | 4.1 After #25324, using file form fields (via `Symfony\Component\DomCrawler\Field\FileFormField::upload()` for testing) still triggers deprecation notices like `Passing a size in the constructor is deprecated since 4.1 and will be removed in 5.0. Use getSize() instead`, e.g. from https://github.com/symfony/symfony/blob/28bf816e74b69d7e9161f6163b489090e95148e3/src/Symfony/Component/HttpFoundation/FileBag.php#L87" "__label__enhancement aws_lambda_function 10 minute retry loop should give feedback regarding error ### Terraform Version ``` terraform -v 2018/02/02 02:10:44 [INFO] Terraform version: 0.11.3 3802b14260603f90c7a1faf55994dcc8933e2069 2018/02/02 02:10:44 [INFO] Go runtime version: go1.9.1 2018/02/02 02:10:44 [DEBUG] found provider ""terraform-provider-aws_v1.8.0_x4"" 2018/02/02 02:10:44 [DEBUG] found provider ""terraform-provider-template_v1.0.0_x4"" 2018/02/02 02:10:44 [DEBUG] plugin: waiting for all plugin processes to complete... + provider.aws v1.8.0 + provider.template v1.0.0 ``` ### Affected Resource(s) - aws_lambda_function ### Debug Output ``` DEBUG: Validate Response lambda/UpdateFunctionConfiguration failed, not retrying, error InvalidParameterValueException: The provided execution role does not have permissions to call SendMessage on SQS ``` (and then it retries for 10 minutes) ### Desired Behavior Upon a non-retryable error, surface that to the user so use can consider aborting Terraform. ### Actual Behavior Keeps retrying same request to lambda/UpdateFunctionConfiguration until 10 minute timeout. ### Steps to Reproduce 0. Attempt to add a dead letter queue to a lambda function when that function's execution role does not have permissions to call SendMessage on SQS. 1. `terraform apply` 2. watch it stay in a `Still modifying...` loop until timeout or ctrl+c 3. upon timeout, it does return useful info: ``` Error: Error applying plan: 1 error(s) occurred: * module.foo.aws_lambda_function.lambda: 1 error(s) occurred: * aws_lambda_function.lambda: Error modifying Lambda Function Configuration foo: InvalidParameterValueException: The provided execution role does not have permissions to call SendMessage on SQS status code: 400, request id: ... ``` ### Important Factoids The lambda function already existed, so this was modifying an existing resource. ### References It appears that recently-closed issue https://github.com/terraform-providers/terraform-provider-aws/issues/1507 with related PR https://github.com/terraform-providers/terraform-provider-aws/pull/3116 is causing this. ### Suggestion Using log level INFO would likely be enough to save the 10 minute loop in cases where this is legitimate user error rather than AWS IAM propagation delays. (https://github.com/terraform-providers/terraform-provider-aws/blob/master/aws/resource_aws_lambda_function.go#L653) If this seems agreeable, I can make a quick PR." __label__enhancement Upgrade to Selenide 4.10.01 "__label__bug [TW-1] Recurring task message on the same task _Profpatsch - says:_ Let the pictures speak for themselves: !http://i.imm.io/1moMR.jpeg! Yep, it’s five instances of the same recurring task I am deleting and no sir, I don’t want to be asked about the same task every time." "__label__enhancement [TW-69] wait dates relative to due date _John Florian says:_ It might be useful to do something like: task add due:12/20/2009 wait:-1m recur:y ""Buy Christmas presents""" "__label__enhancement Feature request/suggestion - Duplicate Nick Names Hello, I'd like to request an old feature be re-implemented in essentialsx. In older versions of essentials it was possible to issue duplicate nick names to players, but at some point this was removed (most likely because of how easily it can be abused) Given that this ability would not be suitable for all servers, I suggest adding a configuration line giving server operators the choice of removing the duplicate name check, such as: ""allow-duplicate-nicks: true"" Thank you. EssentialsX version (run `/essentials`): Server software (run `/version`): Server (`logs/latest.log`): EssentialsX config (`plugins/Essentials/config.yml`): Details: " "__label__bug Individual command documentation has disappeared from wordpress.org **Summary:** All auto-generated command documentation is no longer present on https://developer.wordpress.org/cli/commands/ **Steps to reproduce** 1. visit https://developer.wordpress.org/cli/commands/ or any command sub-page 2. command description (list pages) or documentation (individual command pages) will be completely blank Non-core commands display their installation instructions but no further details - ie: https://developer.wordpress.org/cli/commands/dist-archive/ or https://developer.wordpress.org/cli/commands/admin/ **Results and Impacts** All detailed command documentation is missing. Handbook is still accessible, but all the auto-generated command docs are gone. Example screenshots - https://www.dropbox.com/s/ih88i1t6ca90z04/Screenshot%202018-02-06%2015.30.40.png?dl=0 https://www.dropbox.com/s/etdc8scee2iin0q/Screenshot%202018-02-06%2015.31.05.png?dl=0" "__label__bug Can't restore last closed tab When last tab is closed (with ""Don't close window"" enabled) it cannot be restored with Ctrl+Shift+T, and it not appears in ""History"" -> ""Last closed tabs""" "__label__bug Brain Quizzes ""highlight"" doesn't show up if questions are skipped if questions are skipped in the surveys, the surveys show up as complete, but the following TMB panel isn't highlighted." __label__enhancement Add a config option to make the SDK verbose We are having a lot of new issues coming in from users. Often it would be much easier to address them if we have more details on what exactly the library is doing. A config option to increase verbosity and show exact responses from the API would make resolving such issues much easier. __label__bug Withdrawals to coinbase and crypto address do not work For coinbase the URI should be `/withdrawals/coinbase-account` On both of these a different RequestType is needed I have a fix on my fork https://github.com/duanemay/gdax-java/commit/02e41b4b50478d5c9660c2e6dc3474cd23a9ec35 __label__enhancement CacheManager Plugin "__label__enhancement User should be able to disable analytics collection Firebase, as well as several of our other services (facebook and google), have analytics collection enabled by default. We should give the user an option to disable this data collection in the settings screen." "__label__enhancement [TW-1283] New parser implementation _Renato Alves on 2014-03-07T16:35:58Z says:_ This task is meant to collect all use cases that will need to be taken into account in the planned rewrite of the parser. Lets list all the things that the parser needs to cover here: * Fix trailing/leading spaces around punctuation `(task add Yes we can (or maybe not))` * Hyphened words are misinterpreted as tags `(task add In-depth task)` * Problems with escaping characters with special meanings `(-, +, /, ...)` * Numerical tags that don't contain characters `(-200)` Edit this if more issues arise and link related issues to this task." "__label__bug Iframe contents not responsive on mobile devices When viewed on a laptop, for example, the iframe contents adapt to user viewport according to window width, thus showing Ushahidi's responsive UI. This is the desired behaviour. However, when viewed on mobile, the iframe is scaled at 100%, but the content inside it are larger and users have to scroll on both axes to access the entire form. This is bad. Task would be to make the iframe contents to respect iframe's width and scale accordingly. ![image](https://user-images.githubusercontent.com/1579997/35911487-9afd0e48-0c02-11e8-9105-13354226b6c0.png) " __label__bug Mostrar el coste de los tipsters en negativo en bank "__label__bug [Labellisation] [Custom search] Doublon du nom de colonnes avec colonnes multiples Quand on a un match avec plusieurs colonnes dans le référentiel, il me semble que le custom search envoie une colonne en double. Voici ce que je reçois: ```[{'values_to_search': ['Kleber'], 'columns': ['denomination_principale_uai', 'denomination_principale_uai', 'patronyme_uai']}]``` Quand je fais ça: ![image](https://user-images.githubusercontent.com/7846153/35969717-0d76ba3a-0cc8-11e8-93f7-ffe72798e1bc.png) " "__label__bug [Select] The Select's Menu is not positioned properly when using the 'open' prop - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Expected Behavior When using the `open` prop, the Select's Menu should be positioned in the same place as if it were not a controlled component and was opened via a click. ## Current Behavior The Select's Menu is positioned in the top-left corner, or elsewhere depending on how the rest of the page is constructed. Looking at the code, it seems that the `anchorEl` for the Menu is passed only from `handleClick` and `handleKeyDown` (`anchorEl: event.currentTarget`). When the Select is opened using the `open` prop, these functions are not called, therefor `anchorEl` is `null`. ## Steps to Reproduce (for bugs) CodeSandbox example : https://codesandbox.io/s/r7nvmz31nq ## Context I have a button that reveals a Select component and opens it for the user to pick an item. ## Your Environment | Tech | Version | |--------------|---------| | Material-UI | 1.0.0-beta.32 | | React | 16.2.0 | | browser | Chrome 63 | | etc | | " __label__bug Report MegaraModelMap offset given through the input .yaml file When the master_modelmap.json file has offset=0 the processing log yields offset=0 even if the offset is set to a non-zero value in the input .yaml file __label__enhancement Implement QuantityFormat from API After AbstractQuantityFormat has its new name it should implement a `QuantityFormat` interface from the API. __label__bug Visual bug on home view when there are untitled documents in recent history https://www.dropbox.com/s/054ymx2g8xmc7z1/Screenshot%202018-01-30%2011.17.46.png?dl=0 __label__bug 修复页面构建器组件保存功能不可用的BUG 提取成组件模块时,遗留的未解决的问题, "__label__question Disable rotation of the plugin Hi, I disabled rotation of the phone in my application, I use the app only in portrait mode. When I use `nativescript-imagepicker` and pick an image, everything is fine until by mistake a shake the phone or change the direction to landscape. In this moment, the image picker shows the images in a new layout, instead of 4 picture is 8 pictures. How can I disable this rotation ? ![simulator screen shot - iphone x - 2018-01-31 at 09 30 37](https://user-images.githubusercontent.com/12050715/35627008-7b153c04-068f-11e8-9c8e-1992a17a881f.png) ![simulator screen shot - iphone x - 2018-01-31 at 09 30 54](https://user-images.githubusercontent.com/12050715/35627010-7b2bfea8-068f-11e8-970e-c488fd646e50.png) " __label__enhancement home page template should render leader_text somewhere sensible possibly as subheading in each slide image? "__label__bug Using both --data and --url flags does not cause error When using the command line, `qri --data --url ` does not cause and error. Qri ignores the dataset file and imports from the url * [x] add line requiring either one or the other!" "__label__enhancement Missions: workers Enhance model to allow a worker to join/leave a mission Keep existing interface for Mission creation, but use new model: each worker will join at startDate For edition allow to join/leave for workers see projects: Mission Entries" "__label__enhancement XVA PDE Burgard Kjaer Operator _BurgardKjaerOperator_ sets up the Parabolic Differential Equation PDE based on the Ito Evolution Differential for the Reference Underlier Asset, as laid out in Burgard and Kjaer (2014). The References are: - Burgard, C., and M. Kjaer (2014): PDE Representations of Derivatives with Bilateral Counter-party Risk and Funding Costs *Journal of Credit Risk* **7 (3)** 1-19 - Cesari, G., J. Aquilina, N. Charpillon, X. Filipovic, G. Lee, and L. Manda (2009): Modeling, Pricing, and Hedging Counter-party Credit Exposure - A Technical Guide *Springer Finance* **New York** - Gregory, J. (2009): Being Two-faced over Counter-party Credit Risk *Risk* **20 (2)** 86-90 - Li, B., and Y. Tang (2007): Quantitative Analysis, Derivatives Modeling, and Trading Strategies in the Presence of Counter-party Credit Risk for the Fixed Income Market *World Scientific Publishing* **Singapore** - Piterbarg, V. (2010): Funding Beyond Discounting: Collateral Agreements and Derivatives Pricing *Risk* **21 (2)** 97-102 " "__label__bug Nested hook execution in package ""alluvial"" I got the following log: ``` [1/1] Executing file: /media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/vignettes/alluvial-alluvial.R Error in ÈØfyV : [ERROR] - [NESTED HOOK EXECUTION] - probe_promise_created triggers probe_jump_ctxt Calls: %>% ... tryCatchList -> tryCatchOne -> doTryCatch -> evalq -> evalq In addition: Warning message: In ÈØfyV : '/media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/vignettes' already exists error while dyntracing code block Error: [ERROR] - [NESTED HOOK EXECUTION] - probe_promise_created triggers probe_end Execution halted ``` The code of the vignette (including instrumentation): ```r library(promisedyntracer) dyntracer <- create_dyntracer('/media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/data/alluvial-alluvial.sqlite',verbose=FALSE) dyntrace(dyntracer, { ## ----setup, cache=FALSE, include=FALSE----------------------------------- library(alluvial) library(dplyr) knitr::opts_chunk$set( fig.width=7, fig.height=4, cache=FALSE ) ## ----data---------------------------------------------------------------- tit <- as.data.frame(Titanic, stringsAsFactors = FALSE) head(tit) ## ----example------------------------------------------------------------- alluvial(tit[,1:4], freq=tit$Freq, col = ifelse(tit$Survived == ""Yes"", ""orange"", ""grey""), border = ifelse(tit$Survived == ""Yes"", ""orange"", ""grey""), hide = tit$Freq == 0, cex = 0.7 ) ## ----alluvial_defaults_2------------------------------------------------- # Survival status and Class tit %>% group_by(Class, Survived) %>% summarise(n = sum(Freq)) -> tit2d alluvial(tit2d[,1:2], freq=tit2d$n) ## ----alluvial_defaults_3------------------------------------------------- # Survival status, Sex, and Class tit %>% group_by(Sex, Class, Survived) %>% summarise(n = sum(Freq)) -> tit3d alluvial(tit3d[,1:3], freq=tit3d$n) ## ----colors-------------------------------------------------------------- alluvial( tit3d[,1:3], freq=tit3d$n, col = ifelse( tit3d$Sex == ""Female"", ""pink"", ""lightskyblue""), border = ""grey"", alpha = 0.7, blocks=FALSE ) ## ----alluvial_hide------------------------------------------------------- alluvial(tit2d[,1:2], freq=tit2d$n, hide=tit2d$n < 150) ## ------------------------------------------------------------------------ tit2d %>% select(Class, Survived, n) %>% filter(n < 150) ## ----data_layer---------------------------------------------------------- d <- data.frame( x = c(1, 2, 3), y = c(3 ,2, 1), freq=c(1,1,1) ) d ## ----layer_ex1, fig.width=3, fig.height=3, fig.show=""hold""--------------- alluvial(d[,1:2], freq=d$freq, col=1:3, alpha=1) # Reversing the order alluvial(d[ 3:1, 1:2 ], freq=d$freq, col=3:1, alpha=1) ## ----layer_ex2----------------------------------------------------------- alluvial(d[,1:2], freq=d$freq, col=1:3, alpha=1, layer=3:1) ## ----layer_ex3----------------------------------------------------------- alluvial(tit3d[,1:3], freq=tit3d$n, col = ifelse( tit3d$Survived == ""Yes"", ""orange"", ""grey"" ), alpha = 0.8, layer = tit3d$Survived == ""No"" ) ## ----ordering_data------------------------------------------------------- tit %>% group_by(Sex, Age, Survived) %>% summarise( n= sum(Freq)) -> x tit %>% group_by(Survived, Age, Sex) %>% summarise( n= sum(Freq)) -> y ## ----ordering_x---------------------------------------------------------- alluvial(x[,1:3], freq=x$n, col = ifelse(x$Sex == ""Male"", ""orange"", ""grey""), alpha = 0.8, blocks=FALSE ) ## ----ordering_y---------------------------------------------------------- alluvial(y[,1:3], freq=y$n, # col = RColorBrewer::brewer.pal(8, ""Set1""), col = ifelse(y$Sex == ""Male"", ""orange"", ""grey""), alpha = 0.8, blocks = FALSE, ordering = list( order(y$Survived, y$Sex == ""Male""), order(y$Age, y$Sex == ""Male""), NULL ) ) ## ------------------------------------------------------------------------ pal <- c(""red4"", ""lightskyblue4"", ""red"", ""lightskyblue"") tit %>% mutate( ss = paste(Survived, Sex), k = pal[ match(ss, sort(unique(ss))) ] ) -> tit alluvial(tit[,c(4,2,3)], freq=tit$Freq, hide = tit$Freq < 10, col = tit$k, border = tit$k, blocks=FALSE, ordering = list( NULL, NULL, order(tit$Age, tit$Sex ) ) ) ## ---- eval=FALSE, echo=FALSE--------------------------------------------- # d <- expand.grid(a=1:2, b=1:2, c=1:2) # d %>% # mutate( # z=a, # n = rep(1, nrow(d)) # ) -> d # # alluvial( # d[,1:4], # freq=d$n, # col=RColorBrewer::brewer.pal(8, ""Paired""), # blocks=FALSE, # ordering = list( # NULL, # NULL, # order(d$b), # NULL # ) # ) ## ----session_info-------------------------------------------------------- sessionInfo() }) destroy_dyntracer(dyntracer) write('OK', '/media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/data/alluvial-alluvial.OK') ```" "__label__bug Issue reporter: Loading process information takes a long time ### Issue Type Bug ### Description The issue reporter loads system, workspace and running process information with a single request. The later takes a long time on Windows. This can keep the user from submitting a bug report or feature request for which the running process information is unneeded. We should split the calls and only request the process information for performance issues. ### VS Code Info VS Code version: code-oss-dev 1.21.0 (Commit unknown, Date unknown) OS version: Windows Reproduces without extensions" "__label__bug [TW-1462] Priority values may be 'H', 'M' or 'L', not ''. _alea1e on 2014-11-16T12:04:06Z says:_ Current version of taskwarrior is throwing STRING_TASK_VALID_PRIORITY message while adding a new task when the priority is empty (and this is happening when adding a task from vim-taskwarrior) task add priority: some kind of test task There was no problem with this in 2.3.0. I think that the 'if' in 'validate' function has changed a little from that time. Or maybe it's a feature, not a bug? Best regards! " "__label__enhancement Range queries Spawned from the discussion in #42 We want to have range queries. This will probably require indexing a document with a value `v: u64`, we probably want to have the document suscribe to many different postings list that expresses different prefixes of v. The list of such prefixes can be either (like in Solr so I assume this is the same in Lucene) be based on a base decomposition of the int, which requires a base/precision configuration from the user. Another way might be to index most of the prefixes where there is a branch in the fst construction. This would probably require modifying the fst crate to expose this information." __label__enhancement Add help command. Add `chunkc blur::help` with information about `chunkc set` variables and `chunkc blur::` commands. __label__enhancement ZenHub Test Issue 1-2 "__label__bug Missing workaround solution for cordova-sqlite-storage#666 Workaround solution for litehelpers/Cordova-sqlite-storage#666 is missing in this sqlite plugin version, will be included soon." "__label__bug Failed to install BWC with '--version=2.5.0' flag (no 'v2.5' branch created) When installing BWC with `--version=2.5.0` flag, it fails because `v2.5` branch doesn't exist in `bwc-installer` repo. Error: ``` 20171209T173951+0000 20171209T173951+0000 ███████╗████████╗██████╗ ██████╗ ██╗ ██╗ 20171209T173951+0000 ██╔════╝╚══██╔══╝╚════██╗ ██╔═══██╗██║ ██╔╝ 20171209T173951+0000 ███████╗ ██║ █████╔╝ ██║ ██║█████╔╝ 20171209T173951+0000 ╚════██║ ██║ ██╔═══╝ ██║ ██║██╔═██╗ 20171209T173951+0000 ███████║ ██║ ███████╗ ╚██████╔╝██║ ██╗ 20171209T173951+0000 ╚══════╝ ╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝ 20171209T173951+0000 20171209T173951+0000 st2 is installed and ready to use. 20171209T173951+0000 20171209T173951+0000 Head to https://YOUR_HOST_IP/ to access the WebUI 20171209T173951+0000 20171209T173951+0000 Don't forget to dive into our documentation! Here are some resources 20171209T173951+0000 for you: 20171209T173951+0000 20171209T173951+0000 * Documentation - https://docs.stackstorm.com 20171209T173951+0000 * Pack Exchange - https://exchange.stackstorm.org/ 20171209T173951+0000 20171209T173951+0000 Thanks for installing StackStorm! Come visit us in our Slack Channel 20171209T173951+0000 and tell us how it's going. We'd love to hear from you! 20171209T173951+0000 http://stackstorm.com/community-signup StackStorm Community version installed successfully. Could not find file https://raw.githubusercontent.com/StackStorm/bwc-installer/v2.5/scripts/bwc-installer-deb.sh ``` For some reason it wasn't created during the `v2.5.0` release, - something that should be investigated and fixed in the workflows cc @humblearner " __label__bug Look for X-Real-IP When setting up `BugsnagRequest` from the Wai `Request`. "__label__bug Bug - Hotfixes reporting issues 1. The title ""Service Status"" is weird. It should be something like ""Updates Status"" etc. 2. The [servername]_HotfixStatus.xml data files seem to capture a lot of invalid dates showing 12/30/1899. Seems to happen on Windows Server 2016 also, which shouldn't happen." __label__enhancement Changelog Could we have a proper CHANGELOG? It's really annoying to hunt down the changes. __label__bug Long instance declarations are breaking layout. **Original reporter**: _rkit_ http://hackage.haskell.org/packages/archive/HList/0.2.3/doc/html/Data-HList-Record.html#t:Record __label__bug Message in send to handler as String SCC 1.2.2.RELEASE When I define a message with content type `application/json` it's not converted to the object for example to `Map` but passed to handler as a String. Sample to reproduce it is here: `mvn install in https://github.com/jkubrynski/contracts-samples-warehouse` `mvn verify in https://github.com/jkubrynski/contracts-samples-store` "__label__bug Console in version 5.11.1e does not work Hello, with version 5.11.1e the console does not work anymore. No messages are displayed, for example, from the MQTT. Input commands do not produce output in the console. Version 5.11.1d is fine greetings" "__label__bug [TW-1346] color.label erros _David Patrick on 2014-06-21T19:52:28Z says:_ In applying color to the report labels, using .taskrc-setting color.label=, the space-characters miss out on the background color. Have a look at the attached screenshot, to see what I mean. My guess is that the underline directive of the label-line might have something to do with it. " "__label__bug RNCamera: Android Portrait Orientation Upside Down. ### Which implementation are you using Using RNCamera Implementation ### Steps to reproduce 1. Take Picture from front camera. 2. Save using CameraRoll API. ### Expected behaviour When I take a picture, store it using the CameraRoll API and look inside my Gallerias, the image should be right side up. ### Actual behaviour What actually happens is that the image gets flipped upside down. ### Environment - **Node.js version**:v8.9.3 - **React Native version**: 0.51.0 - **React Native platform + platform version**: iOS 9.0, Android 5.0, etc ### react-native-camera Using master version. ###Possible Solution We resolved this issue but decided to make a post for others that might be experiencing the same thing. Not sure if this is the correct implementation, so would need someone to verify. The issue for us seems to be the following line: Line55: mutableImage.mirrorImage() inside: react-native-camera/android/src/main/java/org/reactnative/camera/tasks/ResolveTakenPictureAsyncTask.java " __label__bug Reloading hearing draft page causes infinite loading screen Can be solved by navigating to the page again from top navigation bar. "__label__bug Password request crash the app on Mac If password is set error message appears while running the app. Not possible to use app anymore ## Expected Behavior User should be able to enter password ## Current Behavior Error message: Uncaught exception: TypeError: Cannot read property 'pub_b64' of undefined ## Possible Solution ## Steps to Reproduce (for bugs) 1. Set password 2. Close app 3. Open app again 4. ## Context ## Your Environment * Version used: * Environment name and version (e.g. Chrome 39, node.js 5.4): * Operating System and version (desktop or mobile): Mac OS * Link to your project: ![Screen Shot 2018-01-31 at 20.59.54.png](https://images.zenhubusercontent.com/5a6856fb4b5806bc2bc414a1/371564b6-2eda-4957-b334-19c82b50b0cb)" "__label__bug Issues in developing Lightening component framework Hi HaoIde team, I am wonder with work you did for enhancing HaoIde plug in for sublime to be compatible with Salesforce Lighting component framework. Thanks for the same. Below are the few issues I am facing in Hao Ide pulg for sublime in conjunction with Salesforce Lighting component framework : 1) When I am trying to display Date time in lighting component through auto suggest in Sublime, it suggested me **, two: , three: }}> {(results) => ( )} ``` --- What do folks think? **Leave a :+1: or :-1: on this comment to let me know!**" __label__bug [studio] 2.5.x duplicate is not duplicating dependencies ### Expected behavior When an item is duplicated or copy pasted it must duplicate it's item-specific references. ### Actual behavior https://www.useloom.com/share/e29ef07ddfd248f48710d536f79d8422 ### Steps to reproduce the problem * Copy paste item with item-specific dependencies * Duplicate item with item-specific dependencies ### Log/stack trace (use https://gist.github.com) ### Specs #### Version #### OS #### Browser "__label__enhancement Change number of examples on homepage Currently we are showing 5 example terms on the homepage, but 3 would probably be better. Also while you are in there... can you verify the count. The numbers seem off. " "__label__bug JVM Crash in 0.9.1 on CPU Trying to run the following: ``` Nd4j.create(400,20).distance2(Nd4j.ones(1, 20) ``` Crashes the JVM. [hs_err_pid3708.log](https://github.com/deeplearning4j/nd4j/files/1700260/hs_err_pid3708.log) " "__label__enhancement CCM Let's implement CCM cohesion metric: A. Jarallah, M. Wasiq, and M. Ahmed, “Principle and metrics for cohesion-based object-oriented component assessment,” 2001, confidential Draft Copy. http://ijarcsee.org/index.php/IJARCSEE/article/view/385 (I didn't find the PDF)" __label__bug Update API endpoints to return all datetimes in UTC The reason this has not yet been done is because it will require a good bit of rework on the frontend after the open source migration is complete. - [x] Backend - [x] Frontend "__label__bug URI checks in a case-insensitive manner **Story** A [RFC7230](https://tools.ietf.org/html/rfc7230#section-2.7.3) says that: > The scheme and host are case-insensitive and normally provided in lowercase; all other components are compared in a case-sensitive manner. **Offer** It is need to remove ```tolower``` [here](https://github.com/devAarno/lemon-server/blob/3b4c9c5f6ed5a00d1826fe9cc66a48365d999e6f/src/lemonHttp/http11.y#L164). **DoD** * check if ```tolower``` is used anywhere. If no, drop it from code and CMake's files; * bug is fixed; * tests are fixed." "__label__bug panic in integration tests Teleport 2.4. Linux make integration ``` [signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x46454f] goroutine 21452 [running]: io.copyBuffer(0x7fe19cb6eac0, 0xc420cf43c0, 0x0, 0x0, 0xc420e0c000, 0x8000, 0x8000, 0x11fb9e0, 0xc4203d9f00, 0x7fe19cb6eac0) /opt/go/src/io/io.go:390 +0xdf io.Copy(0x7fe19cb6eac0, 0xc420cf43c0, 0x0, 0x0, 0x0, 0x180001, 0x0) /opt/go/src/io/io.go:360 +0x68 github.com/gravitational/teleport/lib/reversetunnel.(*Agent).proxyTransport.func2(0xc4201acd10, 0x1b2b5e0, 0xc420cf43c0, 0x0, 0x0) /home/sasha/go/src/github.com/gravitational/teleport/lib/reversetunnel/agent.go:439 +0xd3 created by github.com/gravitational/teleport/lib/reversetunnel.(*Agent).proxyTransport /home/sasha/go/src/github.com/gravitational/teleport/lib/reversetunnel/agent.go:440 +0x908 exit status 2 FAIL github.com/gravitational/teleport/integration 37.471s Makefile:128: recipe for target 'integration' failed make: *** [integration] Error 1 ```" "__label__enhancement Better file name and location [line 213](https://github.com/ValentinChCloud/Wallace-galaxy-ie/blob/master/server.R#L213) Where the script is call, I don't like : - python script name - data name - location ( quick and dirty in folder where I know shiny user can write) " "__label__question Question: Rule and Strategy over certain time periods Hi, I'm not sure if the terminology of this question's title is appropriate, so I'll try to explain myself a bit better here. I want to have a Strategy that tells me whether, in the current month (but could be week or day) the price crossed over the R3 pivot point, and, within the same period, didn't cross below the central pivot. It seems to me that a Strategy will run rules on each Bar till it encouter one that satisfies the buy Rule, and then runs till it finds a Bar that satisfies the sell Rule. Is this correct? Is Strategy the correct object to use if I only want ""alarms"" (rather than buy/sell signals)? Also, these checks should be strictly within a certain period. I am not interested in getting an alarm if the R3 is crossed up last month, and central pivot is crossed this month. I only want an alarm if both conditions happen at least once within the same period. I have now 2 implementation, a brute force one where I manually scan the time series and perform my calculations without making use of Rule or Strategy, and one where I'm trying, so far without success, to fit this algorithm within Strategy/Rule model. Any hint or opinion would be highly appreciated. Thanks for this amazing work." "__label__bug Bool queries with different minimum_should_match values are combined incorrectly Combining two queries with different minimum_should_match values seem to result in one of the minimum_should_match values getting lost. Example: ``` >>> q1 = query.Q('bool', minimum_should_match=2, should=[query.Q('term', field='aa1'), query.Q('term', field='aa2'), query.Q('term', field='aa3'), query.Q('term', field='aa4')]) >>> q2 = query.Q('bool', minimum_should_match=3, should=[query.Q('term', field='bb1'), query.Q('term', field='bb2'), query.Q('term', field='bb3'), query.Q('term', field='bb4')]) >>> q1 | q2 Bool(minimum_should_match=2, should=[Term(field='aa1'), Term(field='aa2'), Term(field='aa3'), Term(field='aa4'), Term(field='bb1'), Term(field='bb2'), Term(field='bb3'), Term(field='bb4')]) ``` I would expect instead for a new `Bool(q1, q2)` object to be created so that differing `minimum_should_match` values are preserved. I noticed the ""TODO"" in the code at https://github.com/elastic/elasticsearch-dsl-py/blob/master/elasticsearch_dsl/query.py#L98, so I suspect maybe more intricate behavior is expected. For example, ideally, `Bools` with equal `minimum_should_match` values should be combined. Proposed fix and tests illustrating the issue at: bigbear-jrib/elasticsearch-dsl-py@aedda6366b0f72101969c3f71059e0e498d86c03" "__label__enhancement max body size Introduce some configuring for streaming on the `HTTPParser` (that will be settable via HTTPServer and finally EngineServer) that will enable sync decode APIs. ## Details The follow methods will be introduced on `ContentContainer`: ```swift // will throw an error if HTTP body is of streaming type let user = try req.content.decode(User.self) // User // will work for all HTTP bodies let user = try req.content.streamingDecode(User.self) // Future ``` This will allow us to create a sync API for `req.content.decode` which a lot of users are requesting. ## Methods Now the hard part, how do we let the user decide which bodies should be streaming? ### Streaming Threshold One possibility is a ""streaming threshold"" ```swift if contentLength > streamingThreshold || contentLength == nil /* chunked */ { // configure body stream body = .stream(...) } else { // collect data into buffer body = .data(...) } ``` Assuming a threshold of around 1MB, the large majority of HTTP requests will fall under the streaming threshold and fit into a `.data` body. ### Router Config A method for passing in special config for routes could be used to specify routes that should accept streaming vs. non-streaming bodies: ```swift router.post(""users"", streaming: true) { req in // req.body will always be of type streaming } ``` Or even a subgroup: ```swift router.streaming.post(""users"") {... } ``` ### Middleware Another idea was to use a middleware to collect streaming bodies into `Data`. This middleware could then be optionally applied to routes or the application as a whole. ```swift router.grouped(StreamCollector()).post(""users"") { req in // req.body will always be collected into Data } ``` ### Middleware + Responder A problem with the `Middleware` idea is that Stream collection should be the default with opt-out behavior ideally. We could potentially get around this behavior by inserting the ""Stream Collecting"" behavior into the App's default responder. A middleware could then be created that would later flag the responder to not collect streamed bodies. Thus, if no middleware is present, body streams will be collected by default. ```swift router.grouped(HTTPStreamingBodyEnabler()).post(""users"") { req in } ``` With convenience: ```swift extension Router { public var streaming: RouteGroup { return grouped(HTTPStreamingBodyEnabler()) } } router.streaming.post(""users"") { req in ... } ``` ### Global flag Or, perhaps more simply, just a global flag: `streamBodies: Bool`. If false, all bodies w/ content length would be collected into Data first." __label__enhancement Add link to acceptable use policy document As security I would like to have a link to the acceptable use policy next to the WTF text so that Wizeliners be able to see the complete document "__label__bug [TW-882] task 1.9.3 crashes when log + project (add+done works though) _Nico Schottelius on 2011-02-10T11:08:24Z says:_ Logs says more than words, [9:33] kr:puppet% task log +eth +bestellung project:eth Headset für Simonetta bestellen zsh: segmentation fault task log +eth +bestellung project:eth Headset für Simonetta bestellen [9:46] kr:puppet% task log +eth +bestellung project:eth Headset für Simonetta bestellen zsh: segmentation fault task log +eth +bestellung project:eth Headset für Simonetta bestellen [9:49] kr:puppet% task add +eth +bestellung project:eth Headset für Simonetta bestellen Created task 38. The project 'eth' has changed. Project 'eth' is 42% complete (4 of 7 tasks remaining). [9:49] kr:puppet% task done 38 Completed 38 'Headset für Simonetta bestellen'. Marked 1 task as done. Project 'eth' is 57% complete (3 of 7 tasks remaining). [9:49] kr:puppet% dmesg | grep segf mutt[11661]: segfault at 8019455b8 ip 00007ff8c4a5e276 sp 00007fff7da05f20 error 4 in libslang.so.2.2.3[7ff8c49d6000+f7000] mutt[4608]: segfault at 800e33f58 ip 00007f10da2cd276 sp 00007fff57f11660 error 4 in libslang.so.2.2.3[7f10da245000+f7000] mutt[4263]: segfault at 802c37bc8 ip 00007f5051faa276 sp 00007fff46df8950 error 4 in libslang.so.2.2.3[7f5051f22000+f7000] task[27456]: segfault at 0 ip 00007f672b65ed81 sp 00007fffba5a2e00 error 4 in libc-2.13.so[7f672b5f4000+158000] task[30538]: segfault at 0 ip 00007f757f06dd81 sp 00007fffde04ec90 error 4 in libc-2.13.so[7f757f003000+158000] [9:52] kr:puppet%" "__label__enhancement Processos > Leis relacionadas Criar uma lista de leis relacionadas ao processo, com os seguintes campos: - [x] Número da lei - [x] Autor - [x] Assunto - [x] Link " __label__bug Calendar: Animation always slides from right to left when updating value prop. Expected behaviour: Slide left to right when updated value is less than the current date. Slide right to left when updated value is greater than the current date. __label__enhancement HTTP Monitoring Support Next major version of Fluent Bit (v0.13) will comes with full HTTP Monitoring feature. This issue have been opened to track it progress. __label__bug com.google.cardboard.RenderThread (22) EXC_BAD_ACCESS I have been having this crash a few times already. I use the gvr for rendering out 360 images inside a swipable card. Any ideas what this might be caused by? __label__enhancement Tap header of pane view to toggle state "__label__bug get_wks with epsi produces filename.epsi.epsi Choosing epsi as output file type and using get_wks (plot_scripts/ncl/aux_plotting.ncl) produces output files, where epsi is attached two times: filename.epsi.epsi It is attached by get_outfile_name and once again by the ncl intrinsic function gsn_open_wks. Suggestion to resolve this issue: Change in get_wks line : wks = gsn_open_wks(file_type, basename(outfile) ) " __label__enhancement Add man page entry for CLI qpc report summary/detail commands # Opening a new issue ___ ## Specify type: - Enhancement ## Description: Add man page entry for CLI qpc report summary/detail commands ___ __label__question Is the .postcssrc file still necessary? "__label__question Binance default precisions computed from https://www.binance.com/api/v1/exchangeInfo - OS: Linux - Programming Language version: NodeJS v8.9.4 - CCXT version: 1.10.1006 - Exchange: Binance - Method: fetchMarkets Hi. I noticed that current implementation for _Binance_ assumes that https://www.binance.com/api/v1/exchangeInfo returns _precisions_ values as _float_ From [js/binance.js](https://github.com/ccxt/ccxt/blob/master/js/binance.js) ``` let precision = { 'base': market['baseAssetPrecision'], 'quote': market['quotePrecision'], 'amount': market['baseAssetPrecision'], 'price': market['quotePrecision'] }; this.extend (this.fees['trading'], { ... 'limits': { 'amount': { 'min': lot, 'max': undefined, }, 'price': { 'min': -1 * Math.log10 (precision['price']), 'max': undefined, }, 'cost': { 'min': lot, 'max': undefined, } } } ``` But _baseAssetPrecision_ & _quotePrecision_ are already provided by _Binance_ as _integers_ From [Binance](https://www.binance.com/api/v1/exchangeInfo) : ``` { ""symbol"":""BTCUSDT"", ""status"":""TRADING"", ""baseAsset"":""BTC"", ""baseAssetPrecision"":8, ""quoteAsset"":""USDT"", ""quotePrecision"":8, ""orderTypes"":[ ""LIMIT"", ""LIMIT_MAKER"", ""MARKET"", ""STOP_LOSS_LIMIT"", ""TAKE_PROFIT_LIMIT"" ], ""icebergAllowed"":true, ""filters"":[ { ""filterType"":""PRICE_FILTER"", ""minPrice"":""0.01000000"", ""maxPrice"":""10000000.00000000"", ""tickSize"":""0.01000000"" }, { ""filterType"":""LOT_SIZE"", ""minQty"":""0.00000100"", ""maxQty"":""10000000.00000000"", ""stepSize"":""0.00000100"" }, { ""filterType"":""MIN_NOTIONAL"", ""minNotional"":""10.00000000"" } ] } ``` I don't know if there was a change on _Binance_ side recently. Problem is eventually fixed because _ccxt_ then update precisions from _filters_ but for consistency, maybe computation of _default precisions_ should be updated to use information returned from _Binance_, without applying _Math.log10_" __label__enhancement Need a friendly 503 page "__label__bug Setting ""Copy Local"" for gtk-sharp DLLs has broken non-Windows installs Recent changes altered the setting for ""Copy Local"" for gtk-sharp, gdk-sharp and glib-sharp from ""false"" to ""true"". This causes problems with the Linux builds, as the installer will attempt to install copies of these (it installs everything in the Bin folder), but doesn't configure them properly." __label__enhancement Update to angular 5 and bootstrap 4 "__label__bug Co-authors field doesn’t support usernames with a trailing - ### Description I can’t @mention users in the Co-Authors field if their name ends with a `-`, ex. `@ArtOfCode-`. ### Version **GitHub Desktop version:** 1.0.13 **OS version:** 10.13.2 (17C88) ### Steps to Reproduce 1. Click the “Add Co-Authors” button 1. Enter `@ArtOfCode-` **Expected behavior:** Adds `@ArtOfCode-` as a co-author **Actual behavior:** The autocomplete box disappears and `@ArtOfCode-` is not a co-author **Reproduces how often:** 💯% ### Logs #### Additional Information " "__label__bug [TW-923] task delete issue _steve rader on 2011-01-02T10:25:44Z says:_ ""task delete"" doesn't return anything for me--with 1.9.3 and 1.9.4. Thankfully it doesn't delete all my tasks. Me thinks it should report ""No matches."" like other commands that fail." "__label__enhancement Toward more flexibility : how the new framework will help us **Here's a very interesting user feedback** > Dear Sir/Madam, > > I don't need the Page Title, I want to have my own title design with an image. I do research on Customizr Documentation but no luck to find the solution. I tried to duplicate the template file to my child theme and modify it but don't know which file I should copy. I found wp-content/themes/customizr-pro/inc/parts/class-content-page.php but it seem not like to WP template file, could you please advise how I can hide the Page Title and which file is controlling the layout of the Page? **Denzel's answer** > Customizr Pro theme, uses hooks and filters, not multiple templates. > There is only one template which is index.php > You are not possible to use template overriding in child theme, you can only use hook or filter to edit or remove elements. > This is the filter that's adding the page and post title. add_filter ( 'tc_headings_content_html' , array( $this , 'tc_post_page_title_callback'), 10, 2 ); > > You can write code to remove filter in your child theme functions.php > > It's much easier if you use css to hide the page title. .page .entry-title{display:none;} **User replied** > What if I have 2-3 layouts for page, for the default WP template, I can easily create them and then select the template from page attribute the Template dropdown menu, how can I do that similar with Customizr? > I research the WordPress forum and find this article https://wordpress.org/support/topic/how-to-add-a-blog-template-for-customizr, I try to make it as a page template and put on my child theme, I can select it but content is empty when view the page. I view the source from inspector, I find the loop run but empty in
...
, I think this code may be fine for the free version of Customizr, I would appreciate if you can provide similar code but for Pro version, I believe it can help a lot of developer in using Customizr, we only need to change the string of query_post() in script. > > Yes, thanks for your support. I think most of the developers select Press Customizr because of its fancy design and hover effect, actually it save us a lot of time to the design. The first time I visit Press Customizr and download the free version, I like it because it is light weight, not like other theme, heavy coding Visual Composer. > > I visit the Press Customizr site, I find a developer page, I didn't read it in-depth and then I purchase it. After in-depth read the developer page, I can't find what I want. I am not sure whether Press Customizr is my right selection if it is difficult to have custom page. In general, we only need to list the post in different category but keeping the Customizr post feature within a page at different area, then we can build a lot of fancy page for client. This is the core requirement. We usually advise client to research some WordPress theme over the Internet, then we purchase it and setup. > > Regarding to the thread you provided, I visit it before and also post in my message, it doesn't work in Pro version, if you can seek your developer just a small code to list posts in grid but allow us to have our own query_post(), I am sure this kind of code can be listed in your http://docs.presscustomizr.com/collection/31-developer-docs, it helps a lot of developer in using Customizr Pro. I assume the Customizr is design for developer use but not only for end-user. > > We usually need to have custom page because lot of the clients want to have complex layout with different kind of content, please allow me to explain to you here. Refer to the attached, different color in block represent as different category post, if we can have the code to list out the post in Press Customizr grid with different hove effect, it is the most idea design for website, especially the informative C2C website. Hope you can understand what the developer need. ![layout](https://cloud.githubusercontent.com/assets/3038156/14665344/baade92e-06d2-11e6-8620-7e267b69a020.jpg) " "__label__bug Error by Debug of Testcase Hello, i have Red 0.8.2, Python 2.7.14 win 32, RobotFramework 3.0.2. If i had a BreakPoint in Testcase and start test tace in debug mode. Red have no stop by breakbapont but i get a error: ![debugger-error](https://user-images.githubusercontent.com/18263592/34156485-c66f0ee4-e4bd-11e7-807a-dff7ef8c40b6.png) and console write: [console-output.txt](https://github.com/nokia/RED/files/1571585/console-output.txt) My Red log: [.log](https://github.com/nokia/RED/files/1571588/default.log) " "__label__enhancement Convert to Progressive Web App Not sure how difficult this will end up being, but it's definitely something I should look at. - https://aarontgrogg.com/blog/2016/02/01/converting-wordpress-to-web-app-adding-caching-and-offline-support/ - http://stackoverflow.com/questions/36565068/converting-wordpress-website-to-progressive-web-app - https://developers.google.com/web/progressive-web-apps/" "__label__enhancement Assert failed for identical swagger files Hi RobWin, We have been using this library for a while now. It worked nicely until yesterday when we needed to implement a (stupid biz rule), where a specific parameter could be placed on as `in` and/or` query` in the parameters section. e.g if you have something like the following in any parameters section, assertj-swagger will fail (just by compare two identical swagger files) on v0.6.0 ` { ""name"": ""projectId"", ""in"": ""path"", ""description"": ""projectId"", ""required"": true, ""type"": ""string"" }, { ""name"": ""projectId"", ""in"": ""query"", ""required"": false, ""type"": ""integer"", ""format"": ""int64"" } ` I've checked the swagger specification it seems this is a legitimate case. I had the issue fixed locally yesterday and will create a PR. I am creating this issue just for the sake of tracking purpose. Thanks." __label__enhancement Lightweight alternative to Joi - [x] Find viable alternatives to Joi. Ideally any alternative is able to provide the same developer experience as Joi "__label__bug Field Names that look alike are annotated wrong? ``` php 'Varchar(255)', 'EmailFromName' => 'Varchar(255)', 'EmailSubject' => 'Varchar(255)', 'EmailContentTitle' => 'Varchar(255)', <========= 'EmailContent' => 'Text', <========= 'ThankYouContent' => 'HTMLText', 'SubmitButtonText' => 'Varchar(255)', ); } ``` " __label__enhancement openTsdb Configuration modification modify hm_test configuration file parameters; modify NodeInfoDataAdapter bug; "__label__bug [TW-711] Deleting Annotation Message is Incomplete _Michelle Crane on 2011-10-13T17:07:29Z says:_ Using Task 2.0.0 beta 3, I finally had occasion to try deleting a specific annotation (one among many). I tried out the 'denotate' command. It seems to work fine, but the resulting message is missing information.
 F:\Dropbox\TextFiles>t3 74 denotate ""capacity examples"" Using alternate .taskrc file .taskrc2 Found annotation '' and deleted it. 
The '' is empty. I had this happen with both a single word, and with the phrase shown above." "__label__bug Python 3.4 `JSONDecodeError` import error System info: `centos 7` Python: `3.4` ``` $ samplecmd docker Traceback (most recent call last): File ""/usr/bin/samplecmd"", line 9, in load_entry_point('samplecmd==1.1.1', 'console_scripts', 'samplecmd')() File ""/usr/lib/python3.4/site-packages/pkg_resources/__init__.py"", line 568, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File ""/usr/lib/python3.4/site-packages/pkg_resources/__init__.py"", line 2720, in load_entry_point return ep.load() File ""/usr/lib/python3.4/site-packages/pkg_resources/__init__.py"", line 2380, in load return self.resolve() File ""/usr/lib/python3.4/site-packages/pkg_resources/__init__.py"", line 2386, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) File ""/usr/lib/python3.4/site-packages/samplecmd/samplecmd.py"", line 31, in from json.decoder import JSONDecodeError ImportError: cannot import name 'JSONDecodeError' ```" __label__bug 002-Announcements-filter-not-working. The filter used to retrieve announcements between two dates does not work anymore. "__label__enhancement hyperlinks again open hyperlinks from a document in work would be useful - terminal, nano and vi can do this :) https://www.youtube.com/watch?v=eL75dVfkjBk" __label__enhancement Improve plugin security Need to add validation and just secure all the inputs and outputs. __label__bug DKPlugin/DKBuild: need to be able to build self app You cannot build an App that is currently running.. crash You cannot build from the App you are running.. crash It would be nice to allow these features. :) __label__bug Wrong line/word breaking rules on lookups "__label__bug WASAPIOUT 5.1 Channel --> IAudioClient::Initialize caused an error: 0x88890008, ""Unknown HRESULT"" I try to play a AAC file in a endless stream to Realtek High Definition Speaker with WasapiOut. Without changing the Waveformat or the Out class i get this Error. > IAudioClient::Initialize caused an error: 0x88890008, ""Unknown HRESULT"" This File has this WavFormat. > {ChannelsAvailable: 6|SampleRate: 48000|Bps: 1152000|BlockAlign: 24|BitsPerSample: 32|Encoding: Extensible|SubFormat: 00000003-0000-0010-8000-00aa00389b71|ChannelMask: SpeakerFrontLeft, SpeakerFrontRight, SpeakerFrontCenter, SpeakerLowFrequency, SpeakerBackLeft, SpeakerBackRight} If i use WaveOut the sound is ok. When i changed the channels from 6 to stereo all is functional but Sound is not so good as before. If i set _soundOut.UseChannelMixingMatrices = true; this have no effort. I am a amateur in c#. What is wrong ??? Should i Use WaveOut or how can i solve this problem with WasApiOut?? Stacktrace: / StackTrace // bei CSCore.SoundOut.WasapiOut.InitializeInternal() // bei CSCore.SoundOut.WasapiOut.Initialize(IWaveSource source) // bei AudioSplit.Form1.PlayFile(String file) Example: public void PlayFile(String file) { var selectedDevice = MMDeviceEnumerator.EnumerateDevices(DataFlow.Render, DeviceState.Active).First(); var client = AudioClient.FromMMDevice(selectedDevice); _soundOut.Stop(); if (_notificationSource != null) _notificationSource.Dispose(); var source = CodecFactory.Instance.GetCodec(file); var ok = client.IsFormatSupported(AudioClientShareMode.Shared, source.WaveFormat, out WaveFormat wavfmt); _sampleSource = source.ToSampleSource(); //_sampleSource = _sampleSource.ToStereo(); //source.Position = 0; _notificationSource = new NotificationSource(_sampleSource) { Interval = 100 }; _notificationSource.BlockRead += (o, args) => { // UpdatePosition(); }; waveSource = _notificationSource.ToWaveSource(); // Error with this waveformat //_waveFormat = {ChannelsAvailable: 6|SampleRate: 48000|Bps: 1152000|BlockAlign: 24|BitsPerSample: 32|Encoding: Extensible|SubFormat: 00000003-0000-0010-8000-00aa00389b71|ChannelMask: SpeakerFrontLeft, SpeakerFrontRight, SpeakerFrontCenter, SpeakerLowFrequency, SpeakerBack... loopStream = new LoopStream(waveSource); _soundOut.Initialize(waveSource); _soundOut.Play(); }" "__label__enhancement Show rdfs:label as a name of node when present Currently, nodes rendered in the Noctua graphical editor list the names of the classes that the owl individual represented by the node is a member of. In some cases it can be useful to display nodes that don't yet have class assignments. It may also be useful to provide a specific name for a particular node apart from its list of classes. It is a widely accepted pattern in the semantic web community to render rdfs:label as a name for entities that bear that annotation. " "__label__bug If the request is in CLI, prevent the output from being compressed ```php if (Request::isCli()) { // disable Response compression. } ``` Also, catch these errors : ``` PHP Notice: Undefined offset: 2 in /home/julien/Web/domains/Polyfony2/Private/Polyfony/Request.php on line 36 PHP Notice: Undefined index: REQUEST_METHOD in /home/julien/Web/domains/Polyfony2/Private/Polyfony/Request.php on line 39 PHP Notice: Undefined index: SERVER_PORT in /home/julien/Web/domains/Polyfony2/Private/Polyfony/Request.php on line 45 ``` " "__label__bug YAML output for `pretty_json` in config output is formatted incorrectly In the configuration file, the key is `pretty_json`. when the CLI outputs to console, it is displayed as `prettyjson`. " __label__bug OHC11703 -Convert to System.Version The rule has a false positives where if you have version 5.2.0 and 5.2 it will say they are not the same. __label__enhancement Integrate Coveralls https://coveralls.io/ https://github.com/kt3k/coveralls-gradle-plugin __label__bug Add fix for content encoding for typeahead Degree names with special characters display incorrectly in the typeahead results. Correct with a similar method as used in the [angular degree search](https://github.com/UCF/UCF-Degree-Search-Plugin/blob/master/src/ts/filters/encodingfilter.ts). __label__enhancement Import data to table from clipboard _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2768 Originally created at: Fri Feb 6 21:52:17 2015 Originally last updated at: Fri Feb 6 21:52:17 2015 Summary is self-descriptive. I really miss this feature from 2.1.5\n\n**Operating system:**\nWindows (other) "__label__bug Mid-page rendering When clicking the NavLink button from `/about` to `/work`, `/work` renders at mid-page instead of at the top of the page" "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/upWV9xeHAi_T5b4sJmljhJhlImyjjZxtdXsVHJsgJVD7fNf_ynkihk2ayTrHxnCC0/6Knl7Id6Rspm9k2XH4Je8AhoMhLuFgtbMJkzNkloiQqPzGamJrFz1rTKufiBoBtB0/lLv845U8LY26GxAODyEC6hlWuVX-H5Wm1GHEnKZSzas1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__bug Summary should not allow date range Change validation to not allow date range for summary getCareRecord request. __label__enhancement Remove Checks and allow logging to anywhere __label__question Discuss default theme parameters For graphic artists to customise a theme. "__label__enhancement Remove the Confirmation box please As we all know, P&D is all about speed, having the confirmation box to confirm the buy and sell just adds more time to get the best price, can we remove that, or have an option to ""Not show this again"", I know there's a risk involved, but timing is the essence :-)" __label__bug Change convert_result module to commas instead of regex Regex isnt working. Back to the drawing board. have to use the timed training insert commas function on the results "__label__bug zqsn inout zqsn should be intent(inout) in icepack_therm_vertical.F90, subroutine init_vertical_profile" __label__question Is there anything like proxies or so in openshot because openshot crashes everytime while i am editing 4k video (i'm not using the fastest and newest computer ;-) **System Details:** * Operating System / Distro: ? * OpenShot Version: ? * _Please attach log files if crash_ **Issue Description and steps to reproduce:** __label__enhancement Display the current date to the user Tasks: - [x] determine where the code should be placed in the program - [x] google search to determine how to solve the problem using java - [x] edit the code - [x] run & test it "__label__enhancement [TW-333] new UDA type; currency _David Patrick on 2012-08-10T21:34:21Z says:_ The ability to track money with a user-defined attribute to is important, how often to tasks have financial aspects? most! A *numeric* field-type is a good start, but the nitty-gritty of handling currency calculations, demands a bit more control. It would be great if taskwarrior could enable the user to strictly define the currency, format, precision and display for the desired local currency. could be defined something like uda.cost.type currency uda.cost.label Cost uda.cost.format -$#,###.## uda.cost.values < 5000.00 #this is to prevent order-of-magnitude mistakes and then a user could casually toss *cost:10* at a task, knowing it will go in as $10.00, not $0.10, and then external scripts have a decent chance of adding it up accurately." __label__bug Chat messages time stamps and frequency Don't need a timestamp FOR EVERY DAMN MESSAGE. ![image](https://user-images.githubusercontent.com/19552720/35637230-500996cc-06bc-11e8-98ca-ff2d20f360f4.png) Goes away after a refresh: ![image](https://user-images.githubusercontent.com/19552720/35637340-98a2b620-06bc-11e8-99ff-d34ec14a8d90.png) Regarding frequency: ![image](https://user-images.githubusercontent.com/19552720/35637374-acd130ae-06bc-11e8-93e5-483e8cd0dec9.png) ``` Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/client/chats/search.js?v=ngeh09l4u54 Source Map URL: public/src/client/chats/search.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/modules/composer/drafts.js?v=ngeh09l4u54 Source Map URL: node_modules/nodebb-plugin-composer-default/static/lib/composer/drafts.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/client/chats/search.js?v=ngeh09l4u54 Source Map URL: public/src/client/chats/search.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/modules/composer/drafts.js?v=ngeh09l4u54 Source Map URL: node_modules/nodebb-plugin-composer-default/static/lib/composer/drafts.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/modules/autocomplete.js?v=ngeh09l4u54 Source Map URL: public/src/modules/autocomplete.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/modules/sounds.js?v=ngeh09l4u54 Source Map URL: public/src/modules/sounds.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/modules/scrollStop.js?v=ngeh09l4u54 Source Map URL: public/src/modules/scrollStop.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/client/chats/messages.js?v=ngeh09l4u54 Source Map URL: public/src/client/chats/messages.js.map[Learn More] Source map error: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data Resource URL: https://forums.openusercss.org/assets/src/client/chats/recent.js?v=ngeh09l4u54 Source Map URL: public/src/client/chats/recent.js.map[Learn More] ``` __label__bug testtetstkljashfklsahlköfökladf asdffsdf __label__enhancement Watch for input changes Is it possible to get notified once a change on a input is performed? "__label__enhancement Check the required open ports between nodes at the beginning of RKE deployment Currently the following ports should be open for rke deployment to be fully successful: - **from rke host to other nodes:** we only need the ssh port 22 and 6443 to communicate for control plane nodes - **from k8s hosts to other k8s hosts:** 2379,2380 (etcd), 10251 (Scheduler), 10252 (Controller), 10250 (kubelet), 10256 (kubeproxy), 6443 (kubeapi), 8472 (flannel vxlan) rke should check for these ports before starting deployment." "__label__bug [TW-8] project name display problems _t charles yun says:_ For a variety of not-so-clever-reasons, I have two projects whose names are different numbers of periods, ""......"" and ""............"" the command: task proj:""."" properly displays the project summaries. However, the command: task project gets confused by the periods and displays successive periods on different lines. I note that this is probably my abuse of bash (xref: http://taskwarrior.org/issues/864 ) more than a task issue." "__label__enhancement create_finding out of sync with REST-API Hi Aaron, create_finding does not include all attributes of the REST-API. Can you add the new attributes? Python-API :param id: Engagement id. :param name: Engagement name. :param product_id: Product key id.. :param lead_id: Testing lead from the user table. :param status: Engagement Status: In Progress, On Hold, Completed. :param target_start: Engagement start date. :param target_end: Engagement end date. :param active: Active :param pen_test: Pen test for engagement. :param check_list: Check list for engagement. :param threat_model: Thread Model for engagement. :param risk_path: risk_path :param test_strategy: Test Strategy URLs :param progress: Engagement progresss measured in percent. REST-API { ""line_number"": """", ""product"": ""related"", ""description"": """", ""reporter"": ""related"", ""sourcefile"": """", ""under_review"": false, ""thread_id"": 0, ""mitigated"": ""datetime"", ""references"": """", ""date"": ""date"", ""active"": false, ""payload"": """", ""under_defect_review"": false, ""impact"": """", ""false_p"": false, ""verified"": false, ""severity"": """", ""is_template"": false, ""title"": """", ""url"": """", ""engagement"": ""related"", ""duplicate"": false, ""param"": """", ""id"": 0, ""sourcefilepath"": """", ""mitigation"": """", ""numerical_severity"": """", ""test"": ""related"", ""out_of_scope"": false, ""cwe"": 0, ""last_reviewed"": ""datetime"", ""resource_uri"": """" }" "__label__bug Concurrency issue when adding reputation points I think there is a concurrency issue when adding reputation points. My last reputation was **375**, then I resigned from 2 jobs ([here](https://github.com/yegor256/jpeek/issues/8#issuecomment-363785136) and [here](https://github.com/yegor256/jpeek/issues/64#issuecomment-363785158)). 0crat deducted 15 points for each, and the current reputation is **345** (correct), but the comment is the same in both issues. The comment says ``total is +345`` in both cases and it should have been ``+360`` in one case, and ``+345`` in the other. I am not sure if this is just a matter of fetching the latest reputation or if it could affect the calculation itself as well. " "__label__bug [TW-43] Better error handling than: ""Found extra operands."" _Benjamin Weber says:_ _What happened?_ @t 386 mod end:2013/23/11@ results @Found extra operands.@ _What do I expect to happen?_ I read something what enables me to solve the issue. When the command line is evaluated, it converts everything to an RPN stack, and when it has finished processing that, there are operands left on the stack. Like entering this on an RPN calculator: ""1 2 3 +"", there is a ""1"" leftover. It has nothing to do with dateformat. The E9 calculator has no context to report a better error. May as well just say ""Sorry.""" __label__bug Undefined method `to_url' for nil:NilClass https://rollbar.com/Populate/gobierto/items/801/ __label__enhancement PaMper: pruning algorithm implement the tree pruning algorithm for our decision tree implementation. "__label__bug Instructors can't edit student answers Issue on the master branch b85f8c1 Instructors can't edit student answers. In master branch, the parameter `user_id` passed in (and thus `user_uuid`) is the instructor ID. Previously, it was the user id of the answer being edited ~~(which is a bit strange)~~. EDIT: when instructors edit a student answer, the `user_id` passed in should be the student's id https://github.com/ubc/compair/blob/b85f8c124ecdc25a8bad8625ba1e95712430df24/compair/api/answer.py#L330-L334" __label__bug Email address on login form should not be case sensitive Phones want to capitalize the first letter of the email address when you type into the login field. This doesn't work because the login form is case sensitive. We need to normalize it so it still works regardless of the case. "__label__enhancement Proof Generator can be replaced with Proof Validator The purpose of the app is to generate FEEDBACK based on the proof the user has entered. Generating a proof may be a waste of time and resources. The development of a proof validator may be more efficient in both project time and resources. Such a validator would simply check the proof by ensuring assumptions are discharged and inference rules are validly used. If either of these conditions are not true, then the validator will generate advice on how the user may be able to improve their approach. **Suggestion: Remove proofGen.js functionality and add proofValidator.js functionality**" "__label__enhancement Duplicated CSS for multiple instances of the same component **Stencil version:** ``` @stencil/core@0.2.3 ``` **I'm submitting a:** - [x] bug report - [ ] feature request - [ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or https://stencil-worldwide.slack.com **Current behavior:** When creating a component with styleUrl defined, If you use multiple instances of the same component and have prerendering on, the resulting html will have multiple copies of the same css inside . **Expected behavior:** If you have multiples instances of the same component, the common parts(like css), should not be repeated on the resulting html. **Steps to reproduce:** Create a component1 with styleUrl filled. Inside render() of component2, add multiple instances of the previous created component1. Build the project with prerendering on. **Related code:** ```tsx // insert any relevant code here ``` **Other information:** " "__label__bug New DateRangeHandler is unreliable, causing failures In #161 a `DateRangeHandler` was introduced, but it is not working as expected because it assumes that the start date will have the key `0` and the end date will have the key `1`. We are using Behat DrupalExtension for testing our fields, and it is passing the correct compound field property keys `value` and `end_value`. Ref. `RawDrupalContext::parseEntityFields()`." "__label__bug seems to not run the tests during pkg build https://s3.amazonaws.com/archive.travis-ci.org/jobs/156708457/log.txt ``` : # call ctest directly since passing ctest -LE via dh_auto_test seems not to work cd ""build-x86_64-linux-gnu"" && ctest Test project /home/travis/build/neurodebian/afni/build-x86_64-linux-gnu No tests were found!!! cd ""build-x86_64-linux-gnu-static"" && ctest Test project /home/travis/build/neurodebian/afni/build-x86_64-linux-gnu-static No tests were found!!! ``` " __label__bug Add RemoteDataSource to index.js' exports __label__bug 子ページ一覧のホバーエフェクトにアクセントカラーが反映されていない "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/V-lasWne-1vjXY6PV4wuCcnu2mvvebll_mlSJAm9wR0iUTPIVDpVV9br66XfGt520/EKVpnrSYZNtr0S2siWBCTsISywGyBcLcQ7Sc1ViFooQsh9uD3xwSrJfL94GCMOt10/ZeT_XEKGh56DFdnXC6ohdqOIeYUCVoi366P6uJniGEI1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug Counter The counter doesn't count up, just displays the numbers. Investigate this." "__label__bug Issue on 'for loop' with shapes inside? Hello, When I have a ""for loop"" with a shape inside, and the loop runs more than once, Word claims that output is corrupted. Sample input: ![image](https://user-images.githubusercontent.com/196840/27770783-86fce772-5f1b-11e7-9106-69320d65619a.png) If loop runs only once, output is as expected (one blue rectangle). If loop is run more than once, Word 2016 complains: ![image](https://user-images.githubusercontent.com/196840/27770811-c633e5bc-5f1b-11e7-8808-1bb7172385ac.png) But if I try to proceed and let Word recover the document, output is as expected (two rectangles). If I replace the figure with text, everything works fine. I will try to investigate the issue soon. Just posting it here to force myself to come later with a following up and to ask if this is a known bug. Thanks again for the great work on the gem." __label__enhancement Block Unknown Commands Only allow player to use known commands. "__label__bug [TW-442] export-csv.pl mishandles entries with embedded apostrophe _John Florian on 2012-08-07T16:08:32Z says:_ I've used the CSV format in the past to share certain project tasks with management through a spreadsheet, since their not TW users. Today I found that the import into LibreOffice Calc wasn't working as expected and have traced the problem to a task description containing an embedded apostrophe. This perl script quotes all fields with the same character which then confuses importers. While I personally despise the CSV format due to the lack of a true standard, I'm not aware of a better method for this data migration path. Nor can I suggest what the best approach here would be. Is there a generally accepted means for escaping such characters? Should the offending character just be stripped out?" "__label__question onChange event not firing, can't type in ChipInput I've wrapped `ChipInput` and to make it a controlled input. I've also tried uncontrolled but I don't see any redux actions being created after the focus action. Typing in the field does nothing and I see no actions in the console / redux-logger. I've tried overriding `onChange` (when uncontrolled and using `defaultValue`), switching this to a stateful component as per the controlled input example - same issue. ```javascript import PropTypes from 'prop-types'; import React from 'react'; import ChipInput from 'material-ui-chip-input'; import { injectIntl } from 'react-intl'; const MaterialChipInput = ({ input, label, meta: { touched, error }, ...custom }) => { /* Remove intl from custom props, if passed down to we'll get a warning */ const { intl, ...restCustom } = custom; return ( { const values = input.value || []; input.onChange([...values, addedChip]); }} onRequestDelete={(deletedChip) => { const values = input.value || []; input.onChange(values.filter(v => v !== deletedChip)); }} floatingLabelText={label} errorText={touched && error && intl.formatMessage({ id: error.translateString.id, defaultMessage: error.translateString.defaultMessage }, { validateValue: error.validateValue || '' })} {...restCustom} /> ); }; MaterialChipInput.propTypes = { input: PropTypes.object.isRequired, label: PropTypes.string.isRequired, meta: PropTypes.shape({ touched: PropTypes.bool, error: PropTypes.object }).isRequired, intl: PropTypes.object.isRequired }; export default injectIntl(MaterialChipInput); ``` Included in form: ```jsx ``` I'm struggling to debug it as nothing happens on key input after entering the field. Any ideas? `TextField`, `Checkbox` and other components on the form work fine, just `ChipInput` that you can't type into. TIA" "__label__bug NumberFormatException in logs Strange NumberFormatExceptions are logged On 12.2. ``` org.apache.cocoon.ProcessingException: Sitemap: error invoking action at - resource://aspects/Discovery/sitemap.xmap:159:74 at - resource://aspects/Discovery/sitemap.xmap:158:48 at - resource://aspects/Discovery/sitemap.xmap:149:88 at - resource://aspects/Discovery/sitemap.xmap:148:74 at - resource://aspects/Discovery/sitemap.xmap:145:46 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:89:72 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:79:34 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:78:36 at - file:///opt/lindat-dspace/installation/webapps/xmlui/sitemap.xmap:554:100 at - file:///opt/lindat-dspace/installation/webapps/xmlui/sitemap.xmap:553:49 at - resource://aspects/Administrative/sitemap.xmap:1294:31 at - resource://aspects/Administrative/sitemap.xmap:349:38 at - resource://aspects/Administrative/sitemap.xmap:348:44 at - resource://aspects/Administrative/sitemap.xmap:346:19 at - resource://aspects/EPerson/sitemap.xmap:371:31 at - resource://aspects/EPerson/sitemap.xmap:131:38 at - resource://aspects/EPerson/sitemap.xmap:120:19 at - resource://aspects/Submission/sitemap.xmap:303:27 at - resource://aspects/Submission/sitemap.xmap:283:26 at - resource://aspects/Statistics/sitemap.xmap:359:36 at - resource://aspects/Statistics/sitemap.xmap:347:67 at - resource://aspects/Statistics/sitemap.xmap:39:19 at - resource://aspects/Workflow/sitemap.xmap:186:27 at - resource://aspects/Workflow/sitemap.xmap:170:26 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:85:34 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:84:43 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:83:22 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:155:34 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:149:33 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:144:51 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:127:55 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:120:55 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:117:28 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/themes.xmap:33:45 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/themes.xmap:32:35 at - file:///opt/lindat-dspace/installation/webapps/xmlui/sitemap.xmap:764:94 at org.apache.cocoon.ProcessingException.throwLocated(ProcessingException.java:111) at org.apache.cocoon.components.treeprocessor.sitemap.ActTypeNode.invoke(ActTypeNode.java:141) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(ConcreteTreeProcessor.java:186) at org.apache.cocoon.components.treeprocessor.TreeProcessor.buildPipeline(TreeProcessor.java:260) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:107) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.SelectNode.invoke(SelectNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(ConcreteTreeProcessor.java:186) at org.apache.cocoon.components.treeprocessor.TreeProcessor.buildPipeline(TreeProcessor.java:260) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:107) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(ConcreteTreeProcessor.java:186) at org.apache.cocoon.components.treeprocessor.TreeProcessor.buildPipeline(TreeProcessor.java:260) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:277) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy117.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.process(AbstractProcessingPipeline.java:411) at sun.reflect.GeneratedMethodAccessor205.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.process(Unknown Source) at org.apache.cocoon.components.treeprocessor.sitemap.SerializeNode.invoke(SerializeNode.java:147) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:171) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:247) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:117) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:171) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:247) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:117) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:171) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:247) at org.apache.cocoon.servlet.RequestProcessor.process(RequestProcessor.java:351) at org.apache.cocoon.servlet.RequestProcessor.service(RequestProcessor.java:169) at org.apache.cocoon.sitemap.SitemapServlet.service(SitemapServlet.java:84) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.cocoon.servletservice.ServletServiceContext$PathDispatcher.forward(ServletServiceContext.java:468) at org.apache.cocoon.servletservice.ServletServiceContext$PathDispatcher.forward(ServletServiceContext.java:443) at org.apache.cocoon.servletservice.spring.ServletFactoryBean$ServiceInterceptor.invoke(ServletFactoryBean.java:264) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) at com.sun.proxy.$Proxy102.service(Unknown Source) at org.dspace.springmvc.CocoonView.render(CocoonView.java:117) at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1180) at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:950) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778) at javax.servlet.http.HttpServlet.service(HttpServlet.java:622) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.dspace.app.xmlui.cocoon.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:111) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.dspace.app.xmlui.cocoon.DSpaceCocoonServletFilter.doFilter(DSpaceCocoonServletFilter.java:276) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.dspace.app.xmlui.cocoon.servlet.multipart.DSpaceMultipartFilter.doFilter(DSpaceMultipartFilter.java:119) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.dspace.rdf.negotiation.NegotiationFilter.doFilter(NegotiationFilter.java:50) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.dspace.utils.servlet.DSpaceWebappServletFilter.doFilter(DSpaceWebappServletFilter.java:78) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:212) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:502) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:141) at com.googlecode.psiprobe.Tomcat80AgentValve.invoke(Tomcat80AgentValve.java:41) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:616) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:528) at org.apache.coyote.ajp.AbstractAjpProcessor.process(AbstractAjpProcessor.java:873) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:687) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.doRun(AprEndpoint.java:2508) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:2497) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745) Caused by: java.lang.NumberFormatException: For input string: ""60"" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:580) at java.lang.Integer.parseInt(Integer.java:615) at org.dspace.app.xmlui.cocoon.SearchLoggerAction.act(SearchLoggerAction.java:52) at org.apache.cocoon.sitemap.impl.DefaultExecutor.invokeAction(DefaultExecutor.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.ActTypeNode.invoke(ActTypeNode.java:105) ... 265 more ``` on 27.2. ``` org.apache.cocoon.ProcessingException: Sitemap: error invoking action at - resource://aspects/Discovery/sitemap.xmap:159:74 at - resource://aspects/Discovery/sitemap.xmap:158:48 at - resource://aspects/Discovery/sitemap.xmap:149:88 at - resource://aspects/Discovery/sitemap.xmap:148:74 at - resource://aspects/Discovery/sitemap.xmap:145:46 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:89:72 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:79:34 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:78:36 at - file:///opt/lindat-dspace/installation/webapps/xmlui/sitemap.xmap:554:100 at - file:///opt/lindat-dspace/installation/webapps/xmlui/sitemap.xmap:553:49 at - resource://aspects/Administrative/sitemap.xmap:1294:31 at - resource://aspects/Administrative/sitemap.xmap:349:38 at - resource://aspects/Administrative/sitemap.xmap:348:44 at - resource://aspects/Administrative/sitemap.xmap:346:19 at - resource://aspects/EPerson/sitemap.xmap:371:31 at - resource://aspects/EPerson/sitemap.xmap:131:38 at - resource://aspects/EPerson/sitemap.xmap:120:19 at - resource://aspects/Submission/sitemap.xmap:303:27 at - resource://aspects/Submission/sitemap.xmap:283:26 at - resource://aspects/Statistics/sitemap.xmap:359:36 at - resource://aspects/Statistics/sitemap.xmap:347:67 at - resource://aspects/Statistics/sitemap.xmap:39:19 at - resource://aspects/Workflow/sitemap.xmap:186:27 at - resource://aspects/Workflow/sitemap.xmap:170:26 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:85:34 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:84:43 at - file:///opt/lindat-dspace/installation/webapps/xmlui/aspects/aspects.xmap:83:22 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:155:34 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:149:33 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:144:51 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:127:55 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:120:55 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/UFAL/sitemap.xmap:117:28 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/themes.xmap:33:45 at - file:///opt/lindat-dspace/installation/webapps/xmlui/themes/themes.xmap:32:35 at - file:///opt/lindat-dspace/installation/webapps/xmlui/sitemap.xmap:764:94 at org.apache.cocoon.ProcessingException.throwLocated(ProcessingException.java:111) at org.apache.cocoon.components.treeprocessor.sitemap.ActTypeNode.invoke(ActTypeNode.java:141) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(ConcreteTreeProcessor.java:186) at org.apache.cocoon.components.treeprocessor.TreeProcessor.buildPipeline(TreeProcessor.java:260) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:107) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.SelectNode.invoke(SelectNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(ConcreteTreeProcessor.java:186) at org.apache.cocoon.components.treeprocessor.TreeProcessor.buildPipeline(TreeProcessor.java:260) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:107) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.buildPipeline(ConcreteTreeProcessor.java:186) at org.apache.cocoon.components.treeprocessor.TreeProcessor.buildPipeline(TreeProcessor.java:260) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:277) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy117.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at org.dspace.app.xmlui.cocoon.AspectGenerator.setup(AspectGenerator.java:81) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.prepareInternal(AbstractProcessingPipeline.java:480) at sun.reflect.GeneratedMethodAccessor220.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.prepareInternal(Unknown Source) at org.apache.cocoon.components.source.impl.SitemapSource.init(SitemapSource.java:292) at org.apache.cocoon.components.source.impl.SitemapSource.(SitemapSource.java:148) at org.apache.cocoon.components.source.impl.SitemapSourceFactory.getSource(SitemapSourceFactory.java:62) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:153) at org.apache.cocoon.components.source.CocoonSourceResolver.resolveURI(CocoonSourceResolver.java:183) at org.apache.cocoon.generation.FileGenerator.setup(FileGenerator.java:99) at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy109.setup(Unknown Source) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.setupPipeline(AbstractProcessingPipeline.java:343) at org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline.setupPipeline(AbstractCachingProcessingPipeline.java:710) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.preparePipeline(AbstractProcessingPipeline.java:466) at org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.process(AbstractProcessingPipeline.java:411) at sun.reflect.GeneratedMethodAccessor205.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.cocoon.core.container.spring.avalon.PoolableProxyHandler.invoke(PoolableProxyHandler.java:71) at com.sun.proxy.$Proxy108.process(Unknown Source) at org.apache.cocoon.components.treeprocessor.sitemap.SerializeNode.invoke(SerializeNode.java:147) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:171) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:247) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:117) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.MatchNode.invoke(MatchNode.java:87) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelineNode.invoke(PipelineNode.java:143) at org.apache.cocoon.components.treeprocessor.AbstractParentProcessingNode.invokeNodes(AbstractParentProcessingNode.java:78) at org.apache.cocoon.components.treeprocessor.sitemap.PipelinesNode.invoke(PipelinesNode.java:81) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:239) at org.apache.cocoon.components.treeprocessor.ConcreteTreeProcessor.process(ConcreteTreeProcessor.java:171) at org.apache.cocoon.components.treeprocessor.TreeProcessor.process(TreeProcessor.java:247) at org.apache.cocoon.components.treeprocessor.sitemap.MountNode.invoke(MountNode.java:117) Caused by: java.lang.NumberFormatException: For input string: ""20"" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:580) at java.lang.Integer.parseInt(Integer.java:615) at org.dspace.app.xmlui.cocoon.SearchLoggerAction.act(SearchLoggerAction.java:52) at org.apache.cocoon.sitemap.impl.DefaultExecutor.invokeAction(DefaultExecutor.java:55) at org.apache.cocoon.components.treeprocessor.sitemap.ActTypeNode.invoke(ActTypeNode.java:105) ... 265 more ```" __label__bug Incorrect Github project description Noticed that the Github project description doesn't seem to go with this repo: ![screen shot 2018-02-01 at 9 30 29 am](https://user-images.githubusercontent.com/178680/35693328-b9fe5efc-0732-11e8-85b8-bc7e25e441f4.png) __label__enhancement [TW-1094] task cal verbosity _Federico Hernandez on 2009-09-12T17:38:33Z says:_ (at)task cal@ should be able to output tasks and their description with due dates that fall into the calendar intervall and are already color coded in the calendar. (at)calendar.verbosity@ could be a .taskrc variable. Default would be off. Other values would be the name for a report e.g. calendar.verbosity=ls __label__enhancement Show the real map on the Map Component __label__bug 'page/read'에서 'tree'를 새 탭 열기 하면 blank 페이지로 가는 문제 해결 "__label__bug Dropdown of the intellisense is not in the correct position - VSCode Version: Code - Insiders 1.19.0-insider (3c470706ded48fc75c05f86bc4f9c7b0f4d6c708, 2017-11-27T05:14:17.223Z) - OS Version: Windows_NT x64 6.1.7601 - Extensions: Extension|Author (truncated)|Version ---|---|--- vscode-eslint|dba|1.4.0 githistory|don|0.2.3 xml|Dot|1.9.2 Go|luk|0.6.66 code-beautifier|mic|1.7.2 vscode-icons|rob|7.16.0 vscode-table-formatter|shu|1.2.1 addDocComments|ste|0.0.8 vscode-import-cost|wix|2.5.1 (1 theme extensions excluded) --- Reproduces without extensions: Yes, I checked it Steps to Reproduce: 1. Create a file (in my case `test.go`) 2. Set the language to `Golang` 3. Set the cursor to the End of the file (after the `.`) 3. Press Ctrl + Shift + P and reload the window 4. Press Ctrl + Space to get the intellisense dropdown The first time after the reload when I try to open the intellisense dropdown it is not on the correct position. When I try it a second time or more, everything is alright. It looks like that: ![image](https://user-images.githubusercontent.com/17984549/31911998-caa470aa-b842-11e7-8aaa-57cbd0c9a0e8.png) The testfile to reproduce is: ```go package main import ( ""github.com/sqweek/dialog"" ) func main() { dialog.Message(""%s"", ""Do you want to continue?"").Title(""Are you sure?""). } ``` I'm not so sure, I know that this is a specific issue to `Golang` intellisense, but the position placement is not done there, it is done in the VS Code core. Although it is the same without any extensions enabled. Additional I checked if the same behaviour is in an older release persistent. In this VS Code release everything works without any problems with the same test case: - VSCode Version: Code 1.15.1 (41abd21afdf7424c89319ee7cb0445cc6f376959, 2017-08-16T18:07:25.676Z) - OS Version: Windows_NT x64 6.1.7601 - Extensions: Extension|Author (truncated)|Version ---|---|--- vscode-eslint|dba|1.2.11 githistory|don|0.2.3 xml|Dot|1.9.2 vsc-material-theme|Equ|1.0.3 markdown-table-formatter|jos|0.2.3 vscode-JS-CSS-HTML-formatter|lon|0.2.3 Go|luk|0.6.66 vscode-icons|rob|7.16.0 addDocComments|ste|0.0.8 (4 theme extensions excluded) " "__label__bug Description for the put file uuid is incorrect ### Expected behavior The Swagger description for the put file uuid parameter should be something like: `A RFC4122-compliant ID for the file.` ### Actual behavior Currently the Swagger description for the put file uuid parameter is: `A RFC4122-compliant ID for the bundle.` ### Steps to reproduce the behavior --> View the Swagger spec for the put file operation. This may be seen on the current master branch, currently at commit 8c6e9e0b4699c1ace1c8e44ebb9739bbf57532b0" "__label__enhancement Localization Might be a good idea to start transferring strings to a server-wide locale file, then allow for clients to choose. I know there's a large French community, and some may want to change the file just for fun." __label__bug Support to pass element of 1 dimension array to a procedure **FOLLOWING #820** Currently we don't allow element of an array to be passed as an argument to a procedure. Note that you can pass an element which parent are an array. ```cobol 01 EventList. 05 Event pic X OCCURS 200. 01 EventList2. 05 OCCURS 200. 10 Event2 pic X. ``` Currently `Event(1)` can never be passed directly. But it works for `Event2(1)`. We should at least support 1 dimension array (eg case of `Event(1)` "__label__enhancement Valid character check in description form is required At present, there is no check for description. The user can enter a description of 4 characters as shown in the picture. Notice the description field. Proposed solution: Include a check for minimum and maximum characters entered by the user." "__label__enhancement Provenance 2: Should be able to be left blank Unlike the Oklahoma project that has additional ""Group"" information, the Ploesti (Tidal Wave) project--and possibly other disinterment projects--have only an accession number (e.g., CIL 2017-310), Provenance One (e.g., X-8170) and a Designator (e.g., 601). I have nothing to add to Provenance Two. However, without the Provenance Two field completed, CoRA will not allow me to save. ![image](https://user-images.githubusercontent.com/33871387/34630594-600dd63a-f232-11e7-8edc-81dd2370738f.png) " __label__bug Add integration of Greenkeeper and lock files Currently Greenkeeper is unable to upload updated lock file. Let's fix it by updating Travis configuration. "__label__bug [Edge] After Tampermonkey update to 4.5.5648 GClh is not running anymore http://geoclub.de/forum/viewtopic.php?p=1280081#p1280038 von Peter_Keller » Di 6. Feb 2018, 09:37 Hallo, seid dem Tampermonkey für Edge Update auf 4.5.5648 funktioniert GCLH nicht mehr. Es verhält sich so als wäre es überhaupt nicht da. Oben rechts im Icon wird aber eine rote 1 angezeigt. Ich habe auch nur dies eine Script aktiviert. --- von 2Abendsegler » Di 6. Feb 2018, 22:23 Lösche bitte mal den temporären Speicher von Edge cookies ... und versuchs nochmal. Deinstalliere Tampermonkey und damit auch den GClh und installiere sie erneut. Bei Firefox gabs das auch schon dass nichts mehr ging und nach einer Neuinstallation plötzlich wieder alles ok war. Die GClh Einstellungen vorher sichern. Wenn das nicht hilft: Kannst du bitte mal die Konsole aufrufen? Edge hat bestimmt auch so etwas. Bei Firefox und Chrome geht es mit den Tasten Strg Shift k gleichzeitig drücken. ""Syntax error ... JSHINT output und die Folgezeilen mit require"" interessieren dabei nicht. Wenn noch etwas anderes dort steht, dann poste das doch bitte mal hier. Bitte vorher auch den ganzen Fehler aufklappen, da gibts ganz links bei jedem Fehler einen Pfeil oder einen Button. LG Frank --- von Peter_Keller » Mi 7. Feb 2018, 17:55 2Abendsegler So ich habe Tempermonkey und GCLH neu installiert und keine Veränderung. Hier sind die Meldungen aus der Konsole: ``` HTML1300: Navigation wurde ausgeführt. default.aspx DOM7011: Der Code auf dieser Seite hat die Zwischenspeicherung für das Vor- und Zurücknavigieren deaktiviert. Weitere Informationen dazu finden Sie unter: http://go.microsoft.com/fwlink/?LinkID=291337 dashboard Aktuelles Fenster: www.geocaching.com/account/dashboard HTML1500: Die Markierung kann nicht selbstschließend sein. Verwenden Sie eine explizite schließende Markierung. dashboard (375,21) ERROR: Execution of script 'GC little helper II' failed! Unable to get property 'substring' of undefined or null reference Function code (125) (2,389) TypeError: Unable to get property 'substring' of undefined or null reference at quitOnAdFrames (Function code:957:5) at start (Function code:932:5) at tms_08192034_550e_4bb1_8bef_d496240d63c1 (Function code:11682:1) at Anonymous function (Unknown script code:2:116) at Anonymous function (Function code:2:1) at Anonymous function (Function code:1:58) at Function code (Function code:1:5) at Anonymous function (Unknown script code:2:116) at D.E_c (Unknown script code:2:433) at pa (Function code:59:179) Function code (125) (2,476) AI: TelemetrySampledAndNotSent message:""Telemetry is sampled and not sent to the AI service."" props:""{SampleRate:1}"" Logging.ts (199,36) ``` " "__label__question Exodus vpnd client failing Hello sir thank you i could build vpnd which out any errors but i try for client i have an error: Found argument '--server-addr' which wasn't expected, or isn't valid in this context vpnd --server-addr 5.189.143.25:40000 --disable-crypto & USAGE: vpnd [FLAGS] [OPTIONS] --tun-network For more information try --help " __label__enhancement Merge de develop para o master Pacote de alterações: [v1.1](https://github.com/Bruno-Furtado/bitprice-ios/issues?q=is%3Aissue+is%3Aclosed+milestone%3Av1.1) "__label__bug [seti] ts icon should be blue # You're my boy, Blue! - VSCode Version: 1.20.0-insider - OS Version: Windows 10 1709 (16299.125) Please, return back dark-cyan color for *.ts files, Yellow really annoying." "__label__question Modules switch - [x] switch module on scroll (scrolled + bottom + scroll bottom = next page, scrolled to top + scroll top = prev page) - [x] crossfade filter - [x] switch from chapter - [x] fix navigation bugs (module 0) " __label__bug User is only able to open the 1st phase of a plan The user is not able to open all of the phases on the plan edit screen. Regardless of which phase tab they click on they are brought to the first phase. The following line needs to be updated: https://github.com/DMPRoadmap/roadmap/blob/1659587387f27127b0b5c19f017ce6feae9b55bd/app/controllers/phases_controller.rb#L15 This issue affects the master branch only. "__label__bug Passing AAF Road Patrol recaptures fully-manned FIA Base I captured the military base near Agglechiori/Kavala and put a garrison of 20 men along with two mortars and some manually-placed statics. As I stood there setting this up, a random road patrol happened to pass by on the main road -- and my base was instantly lost. A few seconds later the ZU23s and HMGs obliterated the patrol and the base was recaptured, but now showed as having 0 men, meaning I just lost 20 HR and a fully manned base to a passing jeep. " "__label__enhancement [TW-857] Attribute modifier disjunctions _Paul Beckingham on 2009-06-12T10:42:32Z says:_ Allow the following syntax, Which represents a logical OR between values: task list pri:H,M" "__label__bug Don´t validate Customer password field if ""Allow login"" isn´t checked Hi, i´m on a fresh installation (Version 1.1.5). I discovered an strange behavior when i tried to add an customer. Adding all required information and hitting ""Save"" didn´t Save the new customer. In fact i didn´t get any response. APP_Debug = true shows: The given data failed to pass validation. /var/www/akaunting/vendor/laravel/framework/src/Illuminate/Foundation/Http/FormRequest.php#125 All must-have-field have been filled, but i wasn´t able to save. Adding an customer when writing an Invoice is possible, but then editing wasn´t possible. After a longer research i hit the bug. I´m using a password-Manager which autofills password-fields. In this case, the ""hidden"" field under ""Allow login"" [Which was not marked by me!] was partial (only the first), auto-filled and this hits the ""validation"". In my opinion, the passwort-field shouldn´t be validated when the ""Allow login""-field isn´t checked. Greetings" __label__enhancement PaMpeR: better stopping criterion is needed for the regression tree implementation. It should be based on RSS rather than simply the number of elements in each branch. "__label__bug isOnFloor is intermittently false when moving against the floor normal **Godot version:** 3.0, C# with Mono **OS/device including version:** Windows 10, GTX 1080 **Issue description:** `KinematicBody2D.IsOnFloor()` is intermittently false when moving against the floor normal **Steps to reproduce:** * Press the Spacebar. The character will refuse to jump because he's not on the floor. **Minimal reproduction project:** [peridot.zip](https://github.com/godotengine/godot/files/1683990/peridot.zip) I've already set the `FLOOR_NORMAL` when using `MoveAndSlide`, so there's no reason as to why this should be happening. " "__label__bug Signaltable/Debug interference bug Changing the signaltable while having an active simulation will make the debug mode unusable unless you press the reset button. (Maybe cache the ""old"" simulation or terminate the ""old"" simulation when you update the signaltable?)" __label__bug Rotating the device while in filepicker mode resets directory to default /sdcard "__label__enhancement [TW-773] dependency support _David Patrick on 2009-07-07T01:28:13Z says:_ allowing hierarchies of dependent tasks, as well as dependencies to contacts. see and ignore; rambling and mostly-wrong wiki page : [[dependencies]] see and consider; ""task-linking with special tags forum discussion"":http://taskwarrior.org/boards/6/topics/show/330" __label__enhancement Block explorer: client side auto-update Make block explorer updated automatically on client side via AJAX "__label__enhancement Support alpine docker images My Dockerfile starts with: `FROM nginx:1.12-alpine` In my Dockerfile I want to pull images based on Alpine because these are way smaller than Ubuntu, Centos, and the like. Alpine uses BusyBox so command options are limited. [BusyBox Commands]https://busybox.net/downloads/BusyBox.html#commands ) " __label__enhancement Não permitir espaços no nickname Alterar os seguintes cadastros para não permitir digitar espaços em branco. Fazer toda a validação no frontEnd. ![cadastro1](https://user-images.githubusercontent.com/10589421/33945446-3da73d68-e006-11e7-89d7-1c8bbce84eaf.png) ![cadastro2](https://user-images.githubusercontent.com/10589421/33945449-3dc5b20c-e006-11e7-81f6-cdebeafe476e.png) "__label__enhancement Inform user if items of released collection have no licenses assigned Testserver: qa edmond Browser: ff Version: 3.5.0.1-SNAPSHOT - build date 2016-10-25 17:30:24 User: standard user Actions: discard ""old"" collection Observation: Warning! Error during discarding of the collection! Items must have a license to be released I suggest to inform the user earlier in the process about the lack of license assignment in the collection: Maybe display warning right after clicking ""Discard""? or maybe display a general information on license assigmnent if the user enters for the first time his old released collection with no licenses. " __label__enhancement Add migrations for the self and the community rating ## Detailed Description Additional migrations to account for self and community ratings __label__bug Have previous meetup events __label__bug Some DecoCraft props cannot be placed down at all #1610 See https://minecraft.curseforge.com/projects/decocraft2/issues/1610 **Version of Mod Pack using:** v1.3.4 __label__enhancement [TW-1074] add the possibility to work with a status column _Peter De Poorter on 2010-10-23T06:15:41Z says:_ Goal: to be able to assign status values to tasks For example: ID Project Pri Due Active Age Description Status 3 testing 2 hrs test open 4 testing * 8 secs test2 busy 5 testing 2 secs test3 completed __label__enhancement check the code "__label__bug mylearning.html page components not working http://100things.admin.kademi.com.au/pages/100things/version1/ Open template myLearning If no course is explicitly selected, all available modules for the selected course using the course selected should be shown. ![image](https://user-images.githubusercontent.com/2201340/36059948-d52c3a20-0e92-11e8-9b0a-c5e8dd19a603.png) The course selector does not work. No courses are shown in the drop down. ![image](https://user-images.githubusercontent.com/2201340/36059954-f29655d2-0e92-11e8-84d6-95ce6e0e447b.png) Login as this profile http://100things.admin.kademi.com.au/manageUsers/100975381/#summary-tab " "__label__enhancement Update build workflow to deprecate GitHub dist folder, instead publish through a CDN testdouble.js is transpiled, minified and gzipped for delivery. However, then the release artifact is committed to the GitHub repo. Following the separation of concerns principle, the repo should only contain the source artifacts that are used to make up the final product. Therefore, I would like to propose deprecating the dist folder version of testdouble.js and instead publish library through a CDN. Further: - It is a best practice for a CI/build pipeline to manage release artifacts, - It is annoying to create a commit that is not-related to a documentation or source artifact change, - Without a CDN non-npm users loose human readable version information. The instructions asks users to download the latest directly from GitHub -- `$ curl https://raw.githubusercontent.com/testdouble/testdouble.js/master/dist/testdouble.js -o test/helpers/testdouble.js`. At download time, the user has no idea what version they're getting. Suggested implementation: Unpkg seems to be able to easily host npm packages that implement a umd folder. See https://unpkg.com for further details. Implementation would be fairly easy: - [ ] Add the umd (or dist) directory to your .gitignore file - [ ] Add the umd directory to your files array in package.json - [ ] Use a build script to generate your UMD build in the umd directory when you publish - [ ] Update documentation with the new CDN url - [ ] Add deprecation notice to current dist file for a period of 3-6 months, followed by removal " __label__enhancement threadanalysis support windows threadanalysis support windows "__label__bug [production] # (Errno::ENOENT) ""No such file or directory @ rb_sysopen - /tmp/metaflop/UEkbsiWmIKy96IYsRQ5V_g/bespoke/font.zip""
ExceptionNo such file or directory @ rb_sysopen - /tmp/metaflop/UEkbsiWmIKy96IYsRQ5V_g/bespoke/font.zip
Last OccurrenceOctober 18, 2015 05:05:52 +0200
Count1
## Stack Trace
[app].../app/lib/web_font.rb:40:in `read' [app].../app/lib/web_font.rb:40:in `zip' [app].../app/lib/font_generator.rb:54:in `web' [app].../app/lib/metaflop.rb:39:in `font_web' [app].../app/routes/modulator.rb:66:in `call' [app].../app/routes/modulator.rb:66:in `block (2 levels) in ' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1609:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1609:in `block in compile!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:974:in `[]' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:974:in `block (3 levels) in route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:993:in `route_eval' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:974:in `block (2 levels) in route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1014:in `block in process_route' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1012:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1012:in `process_route' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:972:in `block in route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:971:in `each' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:971:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1084:in `block in dispatch!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1081:in `dispatch!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `block in call!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `call!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:894:in `call' [bundle].../gems/party_foul-1.5.5/lib/party_foul/middleware.rb:8:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' [bundle].../gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' [bundle].../gems/rack-1.6.4/lib/rack/logger.rb:15:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:211:in `call' [bundle].../gems/rack-1.6.4/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:181:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:2021:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:953:in `forward' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1027:in `route_missing' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:988:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:984:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:984:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1084:in `block in dispatch!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1081:in `dispatch!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `block in call!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `call!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:894:in `call' [bundle].../gems/party_foul-1.5.5/lib/party_foul/middleware.rb:8:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' [bundle].../gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' [bundle].../gems/rack-1.6.4/lib/rack/logger.rb:15:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:211:in `call' [bundle].../gems/rack-1.6.4/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:181:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:2021:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:953:in `forward' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1027:in `route_missing' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:988:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:984:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:984:in `route!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1084:in `block in dispatch!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1081:in `dispatch!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `block in call!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `block in invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `catch' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1066:in `invoke' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:906:in `call!' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:894:in `call' [bundle].../gems/party_foul-1.5.5/lib/party_foul/middleware.rb:8:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.4/lib/rack/session/abstract/id.rb:225:in `context' [bundle].../gems/rack-1.6.4/lib/rack/session/abstract/id.rb:220:in `call' [bundle].../gems/rack-1.6.4/lib/rack/logger.rb:15:in `call' [bundle].../gems/rack-1.6.4/lib/rack/commonlogger.rb:33:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:218:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:211:in `call' [bundle].../gems/rack-1.6.4/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:181:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:2021:in `call' [bundle].../gems/rack-1.6.4/lib/rack/deflater.rb:35:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.4/lib/rack/nulllogger.rb:9:in `call' [bundle].../gems/rack-1.6.4/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:181:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:2021:in `call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1486:in `block in call' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1795:in `synchronize' [bundle].../gems/sinatra-1.4.6/lib/sinatra/base.rb:1486:in `call' [bundle].../gems/unicorn-4.9.0/lib/unicorn/http_server.rb:580:in `process_client' [bundle].../gems/unicorn-4.9.0/lib/unicorn/http_server.rb:674:in `worker_loop' [bundle].../gems/unicorn-4.9.0/lib/unicorn/http_server.rb:529:in `spawn_missing_workers' [bundle].../gems/unicorn-4.9.0/lib/unicorn/http_server.rb:140:in `start' [bundle].../gems/unicorn-4.9.0/bin/unicorn:126:in `' [bundle].../bin/unicorn:23:in `load' [bundle].../bin/unicorn:23:in `
'
Fingerprint: `76d02f3b55e9702c04ac9f4b8676a7f8b8c2389b` " "__label__bug [TW-965] ""stop"" annotates start and stop times _David Patrick on 2009-07-07T17:12:51Z says:_ To enable time-tracking, ""stop"" should move start-time and stop-time to a task annotation. It should be easy to report from, and write to, and might be similar to having entered $ task 55 ann:start_2010-01-04_19:32:22---stop_2010-01-04_21:19:13 $ task 55 ann:start_2010-01-05_09:23:02---stop_2010-01-05_11:45:32 $ task 55 ann:start_2010-01-05_23:05:25---stop_2010-01-06_00:06:13 with simply $ task 55 start and $ task 55 stop at the noted times, or by hitting ""s"" in interactive mode, with 55 selected" __label__enhancement Only call api within maximum timeframe Only update currency data from CoinMarketCap API according to guidelines defined here: https://coinmarketcap.com/api/ Check last_updated field of data to see if update is necessary. Needs to be applied to both portfolio single-coin lookup and listing lookups __label__bug /login 返回的数据不符合期望,不是格式;是数据内容;全部为空…… __label__enhancement Admin -> Quest Editor Need to add a Quest Editor tool to the admin dashboard. It should do the following: Quest CRUD: - Name + other properties - Type - Kill target list - Prerequisite quest list - Required items list - Required key items list - Reward items __label__enhancement Investigate in recycler view __label__enhancement Fit logging __label__bug NullPointerException in updateRulsetCache ``` java.lang.NullPointerException at pmd.eclipse.plugin.settings.PmdPreferences.updateRulsetCache(PmdPreferences.java:74) at pmd.eclipse.plugin.settings.PmdPreferences.getProjectScopedPreferences(PmdPreferences.java:66) at pmd.eclipse.plugin.experimental.properties.SamplePropertyPage.addFirstSection(SamplePropertyPage.java:48) at pmd.eclipse.plugin.experimental.properties.SamplePropertyPage.createContents(SamplePropertyPage.java:129) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:241) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1426) at org.eclipse.jface.preference.PreferenceDialog$8.run(PreferenceDialog.java:1193) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil.lambda$0(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:173) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1185) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:591) at org.eclipse.jface.preference.PreferenceDialog$5.lambda$0(PreferenceDialog.java:657) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.jface.preference.PreferenceDialog$5.selectionChanged(PreferenceDialog.java:654) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:872) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil.lambda$0(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:173) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:869) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1238) at org.eclipse.jface.viewers.StructuredViewer.lambda$0(StructuredViewer.java:1261) at org.eclipse.swt.events.SelectionListener$1.widgetSelected(SelectionListener.java:81) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:261) at org.eclipse.jface.util.OpenStrategy.access$5(OpenStrategy.java:256) at org.eclipse.jface.util.OpenStrategy$1.lambda$1(OpenStrategy.java:426) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:37) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:182) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4213) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3820) at org.eclipse.jface.window.Window.runEventLoop(Window.java:818) at org.eclipse.jface.window.Window.open(Window.java:794) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:157) at org.eclipse.jface.action.Action.runWithEvent(Action.java:473) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:565) at org.eclipse.jface.action.ActionContributionItem.lambda$4(ActionContributionItem.java:397) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:86) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4428) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1079) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4238) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3817) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run(PartRenderingEngine.java:1150) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1039) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:153) at org.eclipse.ui.internal.Workbench.lambda$3(Workbench.java:680) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:336) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:594) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:148) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:151) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:388) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:243) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:653) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:590) at org.eclipse.equinox.launcher.Main.run(Main.java:1499) at org.eclipse.equinox.launcher.Main.main(Main.java:1472) ``` __label__bug Output to a file overwrites the original file instead of adding to it "__label__enhancement Replace 'from tkinter import *' with 'import tkinter as tk' It is considered bad practice to use ""from ___ import *""." "__label__bug Mixer auto-deinterlace does not use bob-deinterlace Converted from [SourceForge issue 3560199](http://sourceforge.net/support/tracker.php?aid=3560199), submitted by zebiolo Mixer auto-deinterlace does not use bob-deinterlace. " __label__bug buildah from image create unexpected container name It should create container name `busybox2-working-container` rather than the name `busybox-working-container-4`. ``` [root@fedora buildah]# buildah from busybox2 busybox-working-container-4 ``` "__label__bug Unicode characters cause crash when saving AppList.txt I noticed AppList.txt wasn't updating, and found that it was unable to save due to unicode characters in the file. It's giving errors that I can't seem to replicate or fix, so I'll revisit it later. For the time being until it's fixed I'll remove the offending line (`蒼の彼方のフォーリズム.exe: Ao no Kanata no Four Rhythm`), and avoid adding any similar ones." __label__bug Display mounting holes missing Small mounting holes in the corners are missing on the pcb __label__enhancement Improve search mechanism Improve search mechanism __label__bug Snackbar no longer shows up after a successful submit "__label__bug Travis error - mini conda scipy sparse Travis keeps encountering errors like the following: ``` ==================================== ERRORS ==================================== ___________ ERROR collecting tests/keras_contrib/constraints_test.py ___________ ImportError while importing test module '/home/travis/build/keras-team/keras-contrib/tests/keras_contrib/constraints_test.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: tests/keras_contrib/constraints_test.py:5: in from keras import backend as K ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/keras/__init__.py:3: in from . import utils ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/keras/utils/__init__.py:25: in from .training_utils import multi_gpu_model ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/keras/utils/training_utils.py:7: in from ..layers.merge import concatenate ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/keras/layers/__init__.py:4: in from ..engine import Layer ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/keras/engine/__init__.py:8: in from .training import Model ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/keras/engine/training.py:11: in from scipy.sparse import issparse ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/scipy/sparse/__init__.py:229: in from .csr import * ../../../miniconda/envs/test-environment/lib/python2.7/site-packages/scipy/sparse/csr.py:15: in from ._sparsetools import csr_tocsc, csr_tobsr, csr_count_blocks, \ E ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /home/travis/miniconda/envs/test-environment/lib/python2.7/site-packages/scipy/sparse/_sparsetools.so) ------------------------------- Captured stderr -------------------------------- ``` https://api.travis-ci.org/v3/job/325623397/log.txt Can anyone suggest a solution for this? I'm unable to reproduce it locally, and last I've checked the travis.yml is very to similar to the one in keras-team/keras/travis.yml. " __label__enhancement Investigate busy or busy-signal integration to replace progress bar We're currently displaying a progress bar for indexing and using notifications to display the core being downloaded. Perhaps it would be more interesting to remove this functionality from our end and instead use the [busy](https://atom.io/packages/busy) package to do this for us. This would alleviate some of the maintenance. (We could also automatically download this package by using atom-package-deps.) We're currently blocked by [this ticket](https://github.com/noseglid/atom-busy/issues/4). __label__enhancement feature request: display monitor values in precentage of whole assets instead of just in BTC/ETH - display the profit/current value/week profit/day profit - in USD but also configurable - in percentage of your total coins assets (0.14 btc / profit 0.002 btc = 1.5% profit and so on) "__label__bug The pipe character cannot be entered on Slovenian, Croatian, Serbian keyboard layouts On my (Slovenian) keyboard layout, the pipe character ""|"" is on right alt +W , which transmits the same keycodes as alt + ctrl + W, which closes the current tab in Code Sandbox. This makes it very hard for me to enter pipes. There are also other important characters on Slovenian and other keyboard layouts that are entered with alt+ctrl+[some key]. It would be therefore very helpful if key bindings that use the alt+ctrl combination could be made configurable." "__label__enhancement [BoP] Plants BoP Glowflower, Glowing Coral, Eyebulb Plant, https://github.com/GTNewHorizons/NewHorizons/issues/2473 https://github.com/GTNewHorizons/NewHorizons/issues/2468" "__label__bug [TW-252] task done - Doesn't stop task before marking complete _Renato Alves says:_ Currently if you use *task done* to finish a task that has been *task start* ed before, the task will be annotated with a ""Stopped time"" but will remain in ""Started"" state I noticed this when I accidentally executed *task stop* without a task identifier and after the first prompt for all tasks I got repeated prompts for tasks I had already finished. Steps to reproduce:
 # task add ""Test task"" Created task 1.  # task 1 start Starting task 1 'Test task'. Started 1 task.  # task 1 done Completed task 1 'Test task'. Completed 1 task.  # task 1 info  Name          Value ID            1 Description   Test task                 27-01-2014 17:58 Started task                 27-01-2014 17:58 Stopped task Status        Completed Start         27/1/2014 17:58:50 End           27/1/2014 17:58:52 UUID          8ad1bb44-ca3b-4b3a-b244-8a9d5a681c78 Entered       27/1/2014 17:58:46 (8 secs) Urgency       4.9 Last modified 27/1/2014 17:58:52 (2 secs)  Date               Modification 27/1/2014 17:58:50 Annotation of 'Started task' added.                    Modified set to '27/1/2014 17:58:50'.                    Start set to '27/1/2014 17:58:50'. 27/1/2014 17:58:52 Annotation of 'Stopped task' added.                    End set to '27/1/2014 17:58:52'.                    Modified changed from '27/1/2014 17:58:50' to '27/1/2014 17:58:52'.                    Status changed from 'pending' to 'completed'. Total active time  0:00:02  # task 1 stop Stopping task 1 'Test task'. Stopped 1 task.  # task 1 stop Task 1 'Test task' not started. Stopped 0 tasks.  # task 1 info  Name          Value ID            1 Description   Test task                 27-01-2014 17:58 Started task                 27-01-2014 17:58 Stopped task                 27-01-2014 18:00 Stopped task Status        Completed End           27/1/2014 17:58:52 UUID          8ad1bb44-ca3b-4b3a-b244-8a9d5a681c78 Entered       27/1/2014 17:58:46 (1 min) Urgency       1 Last modified 27/1/2014 18:00:16 (3 secs)  Date               Modification 27/1/2014 17:58:50 Annotation of 'Started task' added.                    Modified set to '27/1/2014 17:58:50'.                    Start set to '27/1/2014 17:58:50'. 27/1/2014 17:58:52 Annotation of 'Stopped task' added.                    End set to '27/1/2014 17:58:52'.                    Modified changed from '27/1/2014 17:58:50' to '27/1/2014 17:58:52'.                    Status changed from 'pending' to 'completed'. 27/1/2014 18:00:16 Start deleted (duration: 0:01:26).                    Annotation of 'Stopped task' added.                    Modified changed from '27/1/2014 17:58:52' to '27/1/2014 18:00:16'. Total active time  0:00:02 
" "__label__bug [TW-1273] Words in task descriptions and annotations are cut-off after a hyphen _Elias Probst on 2014-02-21T19:31:18Z says:_ Words containing a hyphen are cut off starting at the hyphen in task descriptions and annotations as shown in the following example where words like `re-evaluated` are shortened to `re`: ``` elias(at)moria ~ % task add Check, whether requirements for project-foo still need to be re-evaluated once project-bar is finished Created task 1. elias(at)moria ~ % task 1 annotate Also re-evalute the requirements for project-blah Annotating task 1 'Check, whether requirements for project still need to be re once project is finished'. Annotated 1 task. elias(at)moria ~ % task long ID Added Age Description 1 2014-02-21 29s Check, whether requirements for project still need to be re once project is finished 2014-02-21 Also re the requirements for project 1 task ```" "__label__enhancement [TW-579] OS X 10.6 package _David B on 2012-04-13T18:35:45Z says:_ For those of us who are a little behind the times, a 2.0 package built for OS X 10.6 would be greatly appreciated." "__label__enhancement As a Security Server Administrator I want OCSP log messages to be more verbal **Affected components**: - xroad-signer **Affected documentation**: - None **Estimated delivery**: - N/A **External reference**: - https://jira.ria.ee/browse/XTE-386 **Problem** OCSP Response status codes are a bit cryptic for debugging. For example: e.r.x.s.certmanager.OcspClientWorker - Parsing OCSP response from http://ocsp.sk.ee/failed org.bouncycastle.cert.ocsp.OCSPException: Invalid OCSP response status: 6 Response status code 6 stands for UNAUTHORIZED. Logging ""Request not authorized"" would be more informative for administrators. **Acceptance criteria** OCSP log messages are made more verbal. " __label__bug Fix selecting correct js-files from libraries to minimize __label__enhancement Add responsive embed mixin "__label__enhancement Parse references surrounded in brackets in all messages Parse messages for `[book chapter:verse<-chapter:verse> ]`. For example, the following: ``` As I look at [John 3:5], I'm reminded that Jesus was referencing [Ezek 36:25-27] ``` Erasmus would look up the two verses in the user's default version and output them after the message." __label__enhancement Reduce duplication madness between project boards + sprints "__label__bug [TW-43] Better error handling than: ""Found extra operands."" _Benjamin Weber on 2013-11-26T21:49:34Z says:_ _What happened?_ @t 386 mod end:2013/23/11@ results (at)Found extra operands.@ _What do I expect to happen?_ I read something what enables me to solve the issue. When the command line is evaluated, it converts everything to an RPN stack, and when it has finished processing that, there are operands left on the stack. Like entering this on an RPN calculator: ""1 2 3 +"", there is a ""1"" leftover. It has nothing to do with dateformat. The E9 calculator has no context to report a better error. May as well just say ""Sorry.""" "__label__enhancement Filter caches by geometry Add oportunity to filter caches by geometry. Geometry can be dragged rectangle(s), drawed polygon(s) or imported external file (shp). Make a list of geometries, allow user to choose 0-n that actually act as filter. For example, user can drag zipped shp file of estonian counties and choose to filter caches by county. " __label__enhancement Matrix Operations We need matrix operations for MNA calculation. Matrix Transpose and Multiplication is essential "__label__bug Port value ignored for CoAP server event source When configuring the CoAP server event source, the port value is ignored. The schema allows for the port value to be specified and the configuration editor shows the field, but it is not being injected when Spring configures the underlying implementation." "__label__enhancement PDF Search + sync does not sync whole string When enabling ""Sync to source"" in the PDF find dialog and searching for a word or phrase, when an occurrence is selected in the preview, only the central letter is selected in the TeX document. This is caused by the following line in PDFDocument::doFindAgain(): `emit syncClick(pageIdx, lastSearchResult.selRect.center());` together with the fixed, letter-level fine-grained syncing. Fine-grained syncing should be configurable (user setting + in-code parameter in the signal/slot) to be one of: full line, word, character. " __label__enhancement Test2 "__label__bug Dialog is blurred Chrome/Chrome OSX, IE, Opera ### Bug report Reported in ticket ID #1062971 ### Reproduction of the problem Official [Dialog demo](http://demos.telerik.com/kendo-ui/dialog/predefined-dialogs) ### Current behaviour The widget is blurred along with the content inside, due to the transitions ### Environment - **Kendo UI version:** 2016.3.914 - **jQuery version:** 1.9.1 - **Browser:** [Chrome OSX,Windows - Chrome/IE/Opera ] " __label__question itemsClicks still hapen when drawer is close. What can be caused this? ![print_close](https://user-images.githubusercontent.com/12547621/29983887-34aba6f0-8f2e-11e7-9e1d-5c5a1ca28a17.png) ![print_open](https://user-images.githubusercontent.com/12547621/29983892-3986f698-8f2e-11e7-8c3d-57c6c927efbd.png) "__label__bug SSO not working for customers According to some customers SSO for them is not working, neither on windows nor on mac. After they choose a certificate they still have to enter their user/pw. Further testing on QA showed this happens for users that have no domain-role-assignment. Apparently elektra tries to issue a domain-scoped (SSO) authentication, that fails for 'normal' users because of lacking role-assignments. The SSO auth should be 'unscoped' (or at least only scoped to projects/domains where a user has role-assignments for) to fix it." "__label__bug Lithuanian focus bug **OS:** [e.g. Windows 7] **Version:** [e.g. 0.6] The Lithuanian focus ""Historical Revisionism"" for Lithuania gives one a negative opinion modifier with the Bornu Empire. That shouldn't happen **Screenshots / Video:** https://media.discordapp.net/attachments/299919151693299723/410178952263630858/20180205220401_1.jpg?width=1202&height=677 " "__label__bug testExpandGlobs and test_extract_tarball fails on mac I cloned wp-cli and ran phpunit on it. Here is its output - ``` PHPUnit 7.0.0 by Sebastian Bergmann and contributors. ......................................F........................ 63 / 243 ( 25%) ...................................................tar: Option --force-local is not supported Usage: List: tar -tf Extract: tar -xf Create: tar -cf [filenames...] Help: tar --help F.......Debug: This is a test message. (0s) .... 126 / 243 ( 51%) ..............................................................F 189 / 243 ( 77%) FFFFFFFF.............................................. 243 / 243 (100%) Time: 5.28 seconds, Memory: 16.00MB There were 11 failures: 1) BehatTagsTest::test_behat_tags_extension Failed asserting that two strings are identical. --- Expected +++ Actual @@ @@ -'--tags=~@github-api&&~@broken&&~@require-extension-imagick&&~@require-extension-intl' +'--tags=~@github-api&&~@broken&&~@require-extension-imagick' /Users/apple/code/test/wp-cli/tests/test-behat-tags.php:129 2) Extractor_Test::test_extract_tarball Failed asserting that 1 is identical to 0. /Users/apple/code/test/wp-cli/tests/test-extractor.php:117 3) UtilsTest::testExpandGlobs with data set #1 ('{foo,bar}.ab1', array('foo.ab1', 'bar.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 4) UtilsTest::testExpandGlobs with data set #2 ('{foo,baz}.a{b,c}1', array('foo.ab1', 'baz.ab1', 'baz.ac1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 5) UtilsTest::testExpandGlobs with data set #3 ('{foo,baz}.{ab,ac}1', array('foo.ab1', 'baz.ab1', 'baz.ac1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 6) UtilsTest::testExpandGlobs with data set #4 ('{foo,bar}.{ab1,efg1}', array('foo.ab1', 'foo.efg1', 'bar.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 7) UtilsTest::testExpandGlobs with data set #5 ('{foo,bar,baz}.{ab,ac,efg}1', array('foo.ab1', 'foo.efg1', 'bar.ab1', 'baz.ab1', 'baz.ac1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 8) UtilsTest::testExpandGlobs with data set #6 ('{foo,ba{r,z}}.ab1', array('foo.ab1', 'bar.ab1', 'baz.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 9) UtilsTest::testExpandGlobs with data set #7 ('{foo,ba{r,z}}.{ab1,efg1}', array('foo.ab1', 'foo.efg1', 'bar.ab1', 'baz.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 10) UtilsTest::testExpandGlobs with data set #8 ('{foo,bar}.{ab{1,2},efg1}', array('foo.ab1', 'foo.ab2', 'foo.efg1', 'bar.ab1', 'bar.ab2')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' + 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 11) UtilsTest::testExpandGlobs with data set #9 ('{foo,ba{r,z}}.{a{b,c}{1,2},efg{1,2}}', array('foo.ab1', 'foo.ab2', 'foo.efg1', 'foo.efg2', 'bar.ab1', 'bar.ab2', 'baz.ab1', 'baz.ac1', 'baz.efg2')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg2' - 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 5 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' - 6 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 7 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' - 8 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.efg2' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.efg2' + 5 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 6 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' + 7 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' + 8 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg2' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 FAILURES! Tests: 243, Assertions: 695, Failures: 11. ``` The tar issue looks like gnu vs bsd tar issue. `test_behat_tags_extension` issue appears on linux as well." __label__enhancement 3.2.3 节 选项2 第二段的翻译, 个人看法: 虽然是安全的, 但并不理想。即使可以通过使用std::is_nothrow_copy_constructible 和 std::is_nothrow_move_constructible 类型特性在编译期检测到不抛出异常的拷贝构造函数或移动构造函数是否存在, 这种方法局限性也太强。因为在用户自定义的类型中,相比有着不抛出异常的拷贝构造函数或移动构造函数的类型, 那些拷贝构造函数抛出异常并且没有移动构造函数的类型往往更多(尽管这种情况可能会随着人们习惯于C++11中的右值引用而有所改变)。然而如果这些类型不能被存储在你的线程安全的栈中,想想是多么的不幸。 "__label__bug ContentListのスクロール時にupdateContentが発火すると強制的に表示内容が変わってしまう スクロール位置がトップではない状態でContentListの内容が更新された場合、スクロール位置が保持されず、表示内容が変わってしまい、誤ったアクション(Reply, Fav, RT等)を実行してしまう可能性が高い上に、この仕様のためテキストのコピー・アンド・ペーストが難しいという問題があります。" "__label__bug Cannot read property 'length' of undefined for initial terra-search # Issue Description [Line 135 of SearchField.jsx](https://github.com/cerner/terra-core/blob/master/packages/terra-search-field/src/SearchField.jsx#L135) isn't able to access the length property of undefined. ![length-error](https://user-images.githubusercontent.com/5365325/35576491-be51f9a8-05a4-11e8-9733-b0cfc77f2b9e.PNG) If text is added, then removed, the search goes through fine. But if the search button is hit immediately, the error shows up. I believe it's because the default state is initialized from the prop defaultValue, which has a defaultProp of ""undefined"". I'm not super familiar with the code of SearchField so I'm not sure of the impact changing this default prop to empty string would be. The error only seems to show up on this placeholder text example. The other examples on the page are fine. ## Issue Type - [ ] New Feature - [ ] Enhancement - [x] Bug - [ ] Other ## Expected Behavior It should handle empty text, regardless if it was the initial run or subsequent runs ## Current Behavior It handles empty text if and only if the search field had text in it any time before the handleSearch function is called. ## Steps to Reproduce 1. [Go to the Terra documentation for SearchField](http://engineering.cerner.com/terra-core/#/site/search-field) 2. Immediately click on the search button for the example ""Search Field with placeholder text"" 3. Open developer console and see error ## Environment * Component Version: 1.19.0 * Browser Name and Version: Chrome Version 63.0.3239.132 (Official Build) (32-bit) * Operating System and version (desktop or mobile): desktop " __label__enhancement User Management column sorting #### Ombi build Version: V 3.0.2410 #### Update Branch: Open Beta #### Media Sever: Plex and Kodi #### Operating System: Windows 10 #### Problem Description: There used to be sortable columns on the User Management tab. It was nice to see which of my users had logged in most recently. Those don't appear to be there any more. "__label__enhancement Data driven record parsing (implementation) - [x] Implement a parser for the grammar described in #67. - [ ] Compare the time it takes to parse a log with both the grammar and the hard-coded parsing. - [ ] If the difference is too great, implement the grammar as a backup only method for parsing records. - [ ] Document the grammar - [ ] Add a way for users to add events from within the UI. User-configured events should be saved in the program-wide config. " __label__bug rtd theme breaks html help __label__enhancement Create route to delete Episodes Make sure to delete all BGs in the Episode. route: `/episode//delete Create two forms. The first one confirms that the action should be taken. The 2nd one performs the action. __label__enhancement center align footer on mobile "__label__bug Azure: consul cluster start fails during auto discovery ### Description of the Issue (and unexpected/desired result) Trying to start up consul server agent that is configured to use the azure provider for the rejoin. The process exits with `panic: runtime error: invalid memory address or nil pointer dereference`. I saw an old bug report #3193 that has the same kind of exception. But in that stacktrace it seems to come from `consul/command/agent.(*Config).discoverAzureHosts` and my exception comes from `hashicorp/go-discover/provider/azure.fetchAddrsWithTags`. ### Reproduction steps Config file: ``` { ""bootstrap"": true, ""server"": true, ""datacenter"": ""west-europe"", ""data_dir"": ""data"", ""recursors"": [""8.8.8.8"", ""8.8.4.4""], ""ui"": true, ""retry_join"": [ ""provider=azure tenant_id=XXXXXX subscription_id=XXXX client_id=XXXX secret_access_key=XXXX tag_name=purpose tag_value=consul-tst"" ] } ``` I start it up with `consul.exe agent -config-dir ""c:\consul\consul.d"" -log-level trace` And then I get ``` C:\Consul>consul.exe agent -config-file consul.d -log-level trace bootstrap = true: do not enable unless necessary ==> Starting Consul agent... ==> Consul agent running! Version: 'v1.0.5' Node ID: '8a2ae81d-99e1-5808-6782-603744b5dbd0' Node name: 'consul-tst-001' Datacenter: 'west-europe' (Segment: '') Server: true (Bootstrap: true) Client Addr: [127.0.0.1] (HTTP: 8500, HTTPS: -1, DNS: 8600) Cluster Addr: 10.188.3.244 (LAN: 8301, WAN: 8302) Encrypt: Gossip: false, TLS-Outgoing: false, TLS-Incoming: false ==> Log data will now stream in as it occurs: 2018/02/08 14:11:26 [INFO] raft: Initial configuration (index=1): [{Suffrage:Voter ID:8a2ae81d-99e1-5808-6782-603744b5dbd0 Address:10.188.3.244:8300}] 2018/02/08 14:11:26 [INFO] raft: Node at 10.188.3.244:8300 [Follower] entering Follower state (Leader: """") 2018/02/08 14:11:26 [INFO] serf: EventMemberJoin: consul-tst-001.west-europe 10.188.3.244 2018/02/08 14:11:26 [WARN] serf: Failed to re-join any previously known node 2018/02/08 14:11:26 [INFO] serf: EventMemberJoin: consul-tst-001 10.188.3.244 2018/02/08 14:11:26 [INFO] agent: Started DNS server 127.0.0.1:8600 (udp) 2018/02/08 14:11:26 [WARN] serf: Failed to re-join any previously known node 2018/02/08 14:11:26 [INFO] consul: Adding LAN server consul-tst-001 (Addr: tcp/10.188.3.244:8300) (DC: west-europe) 2018/02/08 14:11:26 [INFO] consul: Handled member-join event for server ""consul-tst-001.west-europe"" in area ""wan"" 2018/02/08 14:11:26 [INFO] agent: Started DNS server 127.0.0.1:8600 (tcp) 2018/02/08 14:11:26 [INFO] agent: Started HTTP server on 127.0.0.1:8500 (tcp) 2018/02/08 14:11:26 [INFO] agent: started state syncer 2018/02/08 14:11:26 [INFO] agent: Retry join LAN is supported for: aliyun aws azure digitalocean gce os scaleway softlayer 2018/02/08 14:11:26 [INFO] agent: Joining LAN cluster... 2018/02/08 14:11:26 [DEBUG] discover: Using provider ""azure"" 2018/02/08 14:11:26 [DEBUG] discover-azure: using tag method. tag_name: purpose, tag_value: consul-tst 2018/02/08 14:11:26 Sending GET https://management.azure.com/subscriptions/8086f7e2-f8ad-4eaa-aded-f43a65a0e13e/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01 2018/02/08 14:11:27 GET https://management.azure.com/subscriptions/8084f7e2-f2ad-4eaa-aded-f43a65a0e13e/providers/Microsoft.Network/networkInterfaces?api-version=2016-09-01 received 200 OK panic: runtime error: invalid memory address or nil pointer dereference [signal 0xc0000005 code=0x0 addr=0x0 pc=0xd8d38c] goroutine 44 [running]: github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover/provider/azure.fetchAddrsWithTags(0xc0424a21f0, 0x7, 0xc0424a2210, 0xa, 0x1e20ee0, 0xc042246c80, 0x1e246e0, 0xc042325760, 0x0, 0x0, ...) /gopath/src/github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover/provider/azure/azure_discover.go:115 +0x26c github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover/provider/azure.(*Provider).Addrs(0x1fac948, 0xc04238e060, 0xc042212910, 0xc0424c5d20, 0x1, 0x1, 0x9, 0x150beb5) /gopath/src/github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover/provider/azure/azure_discover.go:81 +0xfbf github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover.(*Discover).Addrs(0xc042325640, 0xc042130000, 0xe3, 0xc042212910, 0x1, 0x1, 0x37, 0x0, 0x3) /gopath/src/github.com/hashicorp/consul/vendor/github.com/hashicorp/go-discover/discover.go:123 +0x2e6 github.com/hashicorp/consul/agent.(*retryJoiner).retryJoin(0xc042631f80, 0xc04214bcc0, 0x0) /gopath/src/github.com/hashicorp/consul/agent/retry_join.go:81 +0x40d github.com/hashicorp/consul/agent.(*Agent).retryJoinLAN(0xc042326000) /gopath/src/github.com/hashicorp/consul/agent/retry_join.go:21 +0x108 created by github.com/hashicorp/consul/agent.(*Agent).Start /gopath/src/github.com/hashicorp/consul/agent/agent.go:369 +0x866 ``` ### `consul version` for both Client and Server Server: `Consul v1.0.5` ### `consul info` for both Client and Server Client: ``` no consul info since it won't start ``` ### Operating system and Environment details Windows server 2016 datacenter on azure I hope this rings a bell somewhere. If I can help in providing more info or testing something i'd be happy to do so. kind regards, Arno den Uijl " "__label__question API docs: continue with github pages or use docs.rs? We've discussed this before ( https://github.com/rusoto/rusoto/issues/629 ). Things that have changed since last discussion: * [docs.rs supports custom build info](https://github.com/onur/docs.rs/pull/73) so we can specify cargo features for docs.rs to build * crategen landed so we don't really use features any more, so docs.rs should have up to date docs on our crates Downsides to using docs.rs: * AWS service discoverability is lacking. See https://docs.rs/rusoto_core/0.27.0/rusoto_core/ . How do you know what services are available? Compare to our existing github pages link where you can see all the service crates: https://rusoto.github.io/rusoto/rusoto_core/index.html * Only published crates have docs. If someone is using `master` instead of a release of Rusoto, they need to generate docs locally Downsides to continuing to use Github Pages: * our build times continue to increase Who's got thoughts?" __label__bug Clicking on a suggested slot in the agent response moves the cursor When you select a slot from the pop-up that appears when writing agent responses the cursor is removed from the input box. Ideally the purpose would stay in the input and be moved to the end of the string you are typing. __label__bug Eval does not guarantee stack-safe Evidence of problems with Eval#flatMap in #240 In kategory https://github.com/kategory/kategory/blob/master/kategory/src/main/kotlin/kategory/data/Eval.kt#L40 In cats https://github.com/typelevel/cats/blob/master/core/src/main/scala/cats/Eval.scala#L81 "__label__bug Join and Leave messages don't seem to work. Since the server migration the Join and Leave messages don't seem to work, even after clearing them and resetting them." "__label__bug critical bug in axi pif f2b8fe0d7d7d1e06de07d10a7be3bd536c2fc8b7 introduced bug, where async reset signal is not referenced in sensitivity list" __label__bug Catch tab headers disapear "__label__bug Opening a new file opens with repeated name if the previous one has been edited Opening a new file checks if the name is ""New File X"" (X being an incremental number) but if fails when there's an edited file (When a file name contains ""(*)"")." __label__enhancement Add arbitrary SVN folder import script "__label__bug ""node_modules\gatsby-plugin-offline\app-shell.js"" didn't pass validation ## Description Saw this issue with my repo and reproduced it with [gatsbyjs.org source](https://github.com/gatsbyjs/gatsby/tree/master/www). After update gatsby/gatsby-cli to latest __gatsby build__ fails. ### Environment Gatsby CLI version: 1.1.39 Node.js version: v9.5.0 Operating System: Windows 10 ### File contents (if changed): `gatsby-config.js`: not changed `package.json`: ``` { ""name"": ""gatsby-starter-default"", ""description"": ""Gatsby default starter"", ""version"": ""1.0.0"", ""author"": ""Kyle Mathews "", ""dependencies"": { ""bluebird"": ""^3.5.1"", ""gatsby"": ""^1.9.188"", ""gatsby-image"": ""^1.0.35"", ""gatsby-link"": ""^1.6.36"", ""gatsby-plugin-canonical-urls"": ""^1.0.12"", ""gatsby-plugin-catch-links"": ""^1.0.15"", ""gatsby-plugin-feed"": ""^1.3.10"", ""gatsby-plugin-glamor"": ""^1.6.11"", ""gatsby-plugin-google-analytics"": ""^1.0.17"", ""gatsby-plugin-lodash"": ""^1.0.8"", ""gatsby-plugin-manifest"": ""^1.0.13"", ""gatsby-plugin-netlify"": ""^1.0.0"", ""gatsby-plugin-nprogress"": ""^1.0.11"", ""gatsby-plugin-offline"": ""^1.0.13"", ""gatsby-plugin-react-helmet"": ""^2.0.4"", ""gatsby-plugin-react-next"": ""^1.0.8"", ""gatsby-plugin-sharp"": ""^1.6.27"", ""gatsby-plugin-sitemap"": ""^1.2.12"", ""gatsby-plugin-twitter"": ""^1.0.10"", ""gatsby-plugin-typography"": ""^1.7.13"", ""gatsby-remark-autolink-headers"": ""^1.4.11"", ""gatsby-remark-copy-linked-files"": ""^1.5.26"", ""gatsby-remark-images"": ""^1.5.43"", ""gatsby-remark-prismjs"": ""^1.2.8"", ""gatsby-remark-responsive-iframe"": ""^1.4.16"", ""gatsby-remark-smartypants"": ""^1.4.7"", ""gatsby-source-filesystem"": ""^1.5.18"", ""gatsby-transformer-csv"": ""^1.3.5"", ""gatsby-transformer-documentationjs"": ""^1.4.6"", ""gatsby-transformer-remark"": ""^1.7.31"", ""gatsby-transformer-sharp"": ""^1.6.18"", ""gatsby-transformer-yaml"": ""^1.5.14"", ""graphql-request"": ""^1.4.1"", ""gray-percentage"": ""^2.0.0"", ""limax"": ""^1.6.0"", ""lodash"": ""^4.16.6"", ""mitt"": ""^1.1.3"", ""parse-filepath"": ""^1.0.2"", ""react-helmet"": ""^5.2.0"", ""react-icons"": ""^2.2.7"", ""slash"": ""^1.0.0"", ""typeface-space-mono"": ""^0.0.40"", ""typeface-spectral"": ""^0.0.40"", ""typography-breakpoint-constants"": ""^0.15.10"", ""typography-plugin-code"": ""^0.16.11"" }, } ``` `gatsby-node.js`: not changed `gatsby-browser.js`: not changed `gatsby-ssr.js`: not changed ### Actual result ``` E:\gatsby\www>gatsby build success delete html files from previous builds — 0.055 s success open and validate gatsby-config.js — 0.004 s success copy gatsby files — 0.092 s success onPreBootstrap — 0.007 s success source and transform nodes — 0.888 s success building schema — 0.867 s success createLayouts — 0.012 s ⠁ The page component at ""node_modules\gatsby-plugin-offline\app-shell.js"" didn't pass validation The page component must export a React component for it to be valid ``` ### Steps to reproduce 1\. clone repo [gatsbyjs.org source](https://github.com/gatsbyjs/gatsby/tree/master/www) 2\. npm install / npm update 3\. gatsby build" "__label__enhancement Option to automatically create structures with bones Use current bones (null objects or solids) for puppet pins and other spatial properties. Finf a new name for them (pins? skin points?) Option to automatically create new Duik16 Bones on top of them and parent them. This will be more versatile for rigging, and easier to understand." __label__enhancement Estilo en DocBlocks En cada función los comentarios aparecen con el caracter \n y una coma en la sección de parámetros. "__label__enhancement Parallel execution It should be possible to specify e.g. a list of biological samples in a pipeline description and have walrus execute the analysis pipeline for each sample in parallel. E.g.: ``` { ""Name"": ""fruitstand"", ""Variables"": [ {""Name"": ""inputDirectory"", ""Values"":[""/data""]}, {""Name"": ""fruits"", ""Values"": [""apple"", ""orange"", ""banana""]} ], ""Stages"": [ { ""Name"": ""input"", ""Image"": ""ubuntu:latest"", ""Cmd"": [ ""sh"", ""-c"", ""cp {{inputDirectory}}/* /walrus/input/"" ], ""Volumes"": [""data:/data""], ""Cache"": true }, { ""Name"": ""filter"", ""Image"": ""ubuntu:latest"", ""Cmd"": [ ""sh"", ""-c"", ""grep {{fruits}} /walrus/input/set1.txt | awk '{print $2}' >> /walrus/filter/{{fruits}}"" ], ""Inputs"" : [ ""input"" ] }, { ""Name"": ""sum"", ""Image"": ""ubuntu:latest"", ""Cmd"": [ ""sh"", ""-c"", ""cat /walrus/filter/{{fruits}} | awk '{s+=$1} END {print s}' > /walrus/sum/{{fruits}}"" ], ""Inputs"" : [ ""filter"" ] } ], ""Version"": """", ""Comment"": ""Fruit stand example pipeline from Pachyderm"" } ``` walrus should parallelize the `filter` and `sum` stages, running them in parallel for each fruit. A first draft is available here: 121a2b75c28655ceae56b495acdcddfad916b385. " "__label__bug [studio] 2.5.x publish of rename leaves original item in environment-store ### Expected behavior rename should remove the original path item and leave only the new path ### Actual behavior Old path is being left https://www.useloom.com/share/f712748a0e4f42fbbbcc7d8c3edee3f0 ### Steps to reproduce the problem * Publish an item, check environment store for item * Rename the item, no change in store as expected * Publish the renamed item, new path shows up but old object is not removed ### Log/stack trace (use https://gist.github.com) ### Specs #### Version #### OS #### Browser " "__label__bug [Windows]Property reset does not appear to work on Numeric fields. It works on strings, booleans and enums, but not numeric fields. It thinks the values are reset, so the status changes, but the actual values do not reset." __label__enhancement Write Home Page CSS # **Summary:** Write specific styling for home page. # **Deadline:** Monday 5th February 2018 # **Pre-Requisites:** - [x] Sketch mockups - [x] #1 Write Core CSS # **Acceptance Criteria:** - [x] Photo Sized Correctly - [x] Photo Shaped Correctly - [x] Photo Centered "__label__question Javascript error when editing form attributes Hi, I get this javascript error: storm-min.js?v419:4885 Uncaught Error: Inspector data-property-xxx attributes do not support complex values. Property: mail_recipients at InspectorPopup.BaseWrapper.applyValues (storm-min.js?v419:4885) at InspectorPopup.onBeforeHide (storm-min.js?v419:4999) at HTMLElement.dispatch (jquery.min.js?v419:3) at HTMLElement.r.handle (jquery.min.js?v419:3) at Object.trigger (jquery.min.js?v419:3) at HTMLElement. (jquery.min.js?v419:3) at Function.each (jquery.min.js?v419:2) at n.fn.init.each (jquery.min.js?v419:2) at n.fn.init.trigger (jquery.min.js?v419:3) at Popover.hide (storm-min.js?v419:3389) When try to edit the attributes of a form. When try to close the popover window, the this javascript error happens. " __label__enhancement Replace current timezone selector Now it is not easy and comfortable to choose timezone. It should hint or autocomplete user's query. It should be sorted by ABC. (Selector with search function?). Connected to #625 __label__bug User Currency List has weird scrolling problems and does not show the entire list correctly "__label__bug Disconnect/Reconnect every 2-5 seconds There are a couple calls to Server_Send with a 20ms timeout that frequently appear to fail inside TCPSocket_Send in the timeout busy loop, forcing a disconnect. This happens every few seconds. I'm not sure why it would be timing out on a loopback connection. If it matters, I'm running the web page in the latest chrome. " "__label__bug [TW-1586] Invisible burndown charts on work reports _David Gay on 2015-03-28T06:51:20Z says:_ While most colour issues were fixed in 2.4.2, the burndown charts on my work reports are still a bit funky. Only the green (completed) portions appear, and they're quite dark[1]. The charts are bright and properly coloured when using the regular `burndown` commands in my terminal. I don't think I'm using any odd configuration options that would cause this, but just in case, I've attached my .taskrc file and the two scripts I use to generate work reports like [1]. I have no other configuration files. [1]: http://oddshocks.com/timesheets/2015-03-26.html" "__label__bug Isochrones default to 5th percentile travel times, even though slider shows 50 Loading isochrones after a page refresh: ![image](https://user-images.githubusercontent.com/2173529/34623001-76947112-f21d-11e7-8d42-6a3ff372dde0.png) Moving percentile slider to 5.0 doesn't change isochrones: ![image](https://user-images.githubusercontent.com/2173529/34623031-8e883bb4-f21d-11e7-8dfb-a664020b5615.png) Moving slider back up to 50.0 shrinks isochrones: ![image](https://user-images.githubusercontent.com/2173529/34623056-a2384cb2-f21d-11e7-934f-cea45ff22f19.png) " "__label__enhancement change cluster.java_home to main_process `Cluster.javaHome` is actually the main process of the program. after fixing up #32, basically we support all program bootstrapping, but it's a confusing name. we have two places to change. For configuration,`java_home` will be changed to`main_process`; for the code, `javaHome` will be `mainProcess`." "__label__question Complete Path Name for store function not worked for new API Hi Odoo, There's a question for new API on Odoo on store function, I want to create a module to stored the full path name of the ledger account, I found there's some kind of code on stock location that fit my requirement. is it something like this: ``` 'complete_name': fields.function(_complete_name, type='char', string=""Location Name"", store={'stock.location': (_get_sublocations, ['name', 'location_id', 'active'], 10)}), def _complete_name(self, cr, uid, ids, name, args, context=None): """""" Forms complete name of location from parent location to child location. @return: Dictionary of values """""" res = {} for m in self.browse(cr, uid, ids, context=context): res[m.id] = m.name parent = m.location_id while parent: res[m.id] = parent.name + ' / ' + res[m.id] parent = parent.location_id return res def _get_sublocations(self, cr, uid, ids, context=None): """""" return all sublocations of the given stock locations (included) """""" if context is None: context = {} context_with_inactive = context.copy() context_with_inactive['active_test'] = False return self.search(cr, uid, [('id', 'child_of', ids)], context=context_with_inactive) ``` But because my module want to use a new api, I created it like this: ``` def _get_fal_one_full_name(self, elmt, level=6): if elmt.parent_id: parent_path = self._get_fal_one_full_name(elmt.parent_id, level-1) + "" / "" else: parent_path = '' return parent_path + elmt.code + ' ' + elmt.name @api.one @api.depends('name', 'code', 'parent_id', 'parent_id.code', 'parent_id.name', 'parent_id.type', 'parent_id.active') def _get_fal_full_name(self): children_ids = self.search([('id', 'child_of', self.id)]) for children_id in children_ids: print children_id children_id.fal_complete_name = self._get_fal_one_full_name(children_id) fal_complete_name = fields.Char(compute=_get_fal_full_name, string='Full Name', readonly=True, store=True) ``` The problem is the code is not worked, it just update the first level of children. Its weird because when I print the children_id, its print all the children that I want. But the system not update it. Is there someone can help me? Thank You. " "__label__enhancement The network (data) ports need to be exposed in the output of the templates The network ports need to exposed via the output of the templates. If the port is exposed, appropriate fixed_ips can be added and floating IP addresses can be associated with virtual addresses." "__label__question Empty/Undefined headers in http.get() causes node crash * **6.10** * **AWS Lambda** ``` var options = { header1: value1, header2: value2, header3: } http.get(options, (err, data) => { // some code }).on('error', (e) => { console.error(`Got error: ${e.message}`); }); Error: ""value"" required in setHeader(""header2"", value) at ClientRequest.OutgoingMessage.setHeader (_http_outgoing.js:355:11) at new ClientRequest (_http_client.js:85:14) at Object.exports.request (http.js:31:10) at Object.exports.get (http.js:35:21) at esbCall (/var/task/index.js:40:26) at exports.handler (/var/task/index.js:20:5) It is not captured inside error event instead crashing the node application. May be similar to this --> https://github.com/request/request/issues/1522 " __label__bug miqprovision_update.rb - rename send_vm_provision_complete_email to send_vm_provision_update_email __label__bug Reset password page alignment "__label__bug Menu system seems to be completely broken clicking about and services take you to write section, but only about is hilighted, and none of the others work. deliverables but is just a link to a pdf so not really important." __label__enhancement [TW-207] Let import check for duplicate descriptions _Jostein Berntsen on 2010-10-21T15:12:38Z says:_ I suggest a feature that makes import check for duplicate descriptions. This would prevent duplicate task when importing from calendar applications like remind and similar programs. This could be an option to task import so that this would be optional to use. Recurring task can be set within task instead. __label__enhancement [TW-179] Incorporate a pager _Paul Beckingham says:_ Incorporate a pager for long report output Bruce Dillahunty __label__enhancement 服务器外网部署计划 部署服务器代码到外网服务器上,并运行APP的步骤。 总的来说我们需要进行如下步骤: 1. 阿里云服务器准备(腾讯也行) 2. 安装MySQL 3. 安装Java环境 4. 安装Tomcat 5. 部署Tomcat 6. Push项目文件到云服务器 共计6个步骤即可~~ **重要重要:**[视频链接](https://pan.baidu.com/s/1i5qXafV) `密码: ngba` **云服务器促销优惠** https://s.click.taobao.com/tvw52bw (学生优惠) https://s.click.taobao.com/x8a42bw (普通) 扫码二维码打开也可以: ![image](https://user-images.githubusercontent.com/5687320/30463627-687fb74c-99ff-11e7-923c-f6a27f431dfa.png) ![image](https://user-images.githubusercontent.com/5687320/30463616-563bf992-99ff-11e7-94e1-52531bbbdb26.png) "__label__enhancement Allow for multiple output types with a single call. To support the ability to create both a .png and .fits with a single call, for example." "__label__question Does not compile /opt/apache-maven-3.5.2/bin/mvn install [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building HA Bridge 5.2.0RC5 [INFO] ------------------------------------------------------------------------ Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 9.5 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 106 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 282 kB/s) [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ ha-bridge --- Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 165 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 149 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 173 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 241 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 621 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 447 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 78 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 91 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 47 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 116 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 110 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 142 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 242 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 222 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 26 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 440 kB/s) [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] Copying 70 resources [INFO] [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ ha-bridge --- Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 157 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 585 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 966 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 240 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 1.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 178 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 253 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 93 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 549 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 655 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 144 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 182 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 262 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 46 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar (33 kB at 131 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar (46 kB at 164 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar (217 kB at 732 kB/s) [INFO] Changes detected - recompiling the module! [INFO] Compiling 162 source files to /opt/ha-bridge/target/classes [INFO] ------------------------------------------------------------- [ERROR] COMPILATION ERROR : [INFO] ------------------------------------------------------------- [ERROR] /opt/ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/fhem/FHEMHome.java:[28,32] package com.bwssystems.fhem.test does not exist [ERROR] /opt/ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/hue/HueUtil.java:[31,48] cannot find symbol symbol: method getHttpClient() location: variable anHttpHandler of type com.bwssystems.HABridge.plugins.http.HTTPHandler [ERROR] /opt/ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/fhem/FHEMHome.java:[174,74] cannot find symbol symbol: variable FHEMInstanceConstructor location: class com.bwssystems.HABridge.plugins.fhem.FHEMHome [INFO] 3 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 7.994 s [INFO] Finished at: 2018-01-17T14:03:05+01:00 [INFO] Final Memory: 19M/55M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project ha-bridge: Compilation failure: Compilation failure: [ERROR] /opt/ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/fhem/FHEMHome.java:[28,32] package com.bwssystems.fhem.test does not exist [ERROR] /opt/ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/hue/HueUtil.java:[31,48] cannot find symbol [ERROR] symbol: method getHttpClient() [ERROR] location: variable anHttpHandler of type com.bwssystems.HABridge.plugins.http.HTTPHandler [ERROR] /opt/ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/fhem/FHEMHome.java:[174,74] cannot find symbol [ERROR] symbol: variable FHEMInstanceConstructor [ERROR] location: class com.bwssystems.HABridge.plugins.fhem.FHEMHome [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException " __label__enhancement Open article url - Enable to open article url. __label__bug Integration with Untappd is not working The untappd integration is not working "__label__enhancement Implement language change Show links of ""index.php?changeLang=*"" in frontend from folder ""lang""." __label__enhancement Remove method layoutOffset from LinearLayoutView "__label__enhancement (web) Add redux, router and firebase **Install**: - [x] Firebase - [x] Redux - [x] Router" __label__bug 規約ページに遷移できない "__label__enhancement [M] URL-bar ~0,5h" "__label__enhancement Reestruturar o sprite dos ícones Reestruturar o sprite da lista de ícones para todas as cores de tema e para o contraste. Tema azul, Tema branco, Tema amarelo, Tema verde, Contraste Nos tamanhos 20px e 40px. " "__label__bug Can't create user that will login with a key When either leveraging secrets.yaml or add-user command with `ssh-key` to create a user with public key I am prompted for a password (which I never provided) to ssh with that user. Tried with ```aztk spark cluster add-user --id cluster1 --username stefan --ssh-key ~/.ssh/id_rsa.pub``` and with this in my secrets.yaml ```ssh_pub_key: ~/.ssh/id_rsa.pub``` Then ```aztk spark cluster ssh --id cluster1 --username stefan``` prompts for a password, which of course I do not have.... If I use add-user with a user/password then I can get in. What am I doing wrong? Using latest from master." "__label__bug Fix sorting to work properly with multi-digit version numbers Right now, it sorts like this: ```markdown ## 1.4.0 [Full Changelog](https://github.com/ecraft/blurf/compare/1.3.0...1.4.0) * 132d945 Merge pull request #83 from ecraft/fix/extract-workerd-method * c4ffa5e Extract method. ## 1.3.0 [Full Changelog](https://github.com/ecraft/blurf/compare/1.23.0...1.3.0) ## 1.23.0 [Full Changelog](https://github.com/ecraft/blurf/compare/1.22.0...1.23.0) * 3da262e Attempt to fix 'bundle install' issue on Travis. (#131) * 727c94b Added foreman, README update * 1dac76c Make it work in PROD * 150fb6d Fixed typo ``` ...which is obviously wrong. 1.23.0 is _ascii-wise_ lower than 1.3.0, but not numerically wise." "__label__enhancement Teachers should be able to add system descriptions to problems - [ ] When creating a problem, allow a teacher to select a system description to go with it (make a copy) - [ ] Embed this system description in the problem launch page" "__label__enhancement Images sent from Matrix don't appear When a Matrix user is sending an image (IRC side), it is sent as an action, in this form: As you can see, the `*` becomes part of the link, which leads to 404 error when trying to click on it (TG side). I suggest that we add a space before and after the `*` on Telegram side, so that images appear correctly. " __label__enhancement design an icon for website if it is necessary "__label__enhancement Make using function expressions with dynamic types more convenient IDEBUG-884 This is only a convenience thing, but makes using plain JS with callbacks much simpler: ``` let foo: any+; // XPECT FIXME type of 'param' --> any+ foo( function(param) { // would be more convenient to have param dynamic, at this point } ) ``` Currently, ""param"" is inferred to ""any"" instead of ""any+"". Also, as IDEBUG-772 follow up, consider following: ``` var f: Function+; // XPECT type of 'x' --> any+ var x = f(); // XPECT type of 'y' --> any+ var y = f.apply(f,[]); // XPECT type of 'z' --> any+ var z = f.call(f); ``` " __label__bug Support running DSE across different architectures "__label__bug Presentation components disappearing When trickle is enabled, there are presentation components followed by an assessment, and the user refreshes the page/closes the course and re-opens, sometimes the presentation components disappear. The only way to resolve the issue is to delete the users attempt data on the LMS." __label__enhancement Add report for active counts over time This will allow site admins to see how their active subscribers count is changing over time. It will require that a new option get stored in the database (not autoloaded) that stores the counts over time. The counts will be populated via a daily cron job that runs and records the number of active subscribers for each subscription level. "__label__bug About Screen Version # The About screen on both the AddIn and the standalone are both reporting 1.0.0.0 when they should be reporting 7.xxxx. I think this is because the [line of code that retrieves the executing assembly](https://github.com/Riverscapes/gcd/blob/master/GCDCore/UserInterface/About/frmAbout.cs#L27) is returning `GCDCore.dll` instead of the parent DLL (`GCDAddin.dll` in the case of the ArcGIS addin, and `GCDStandalone.dll` in the case of the standalone). So either a) set the correct version number on `GCDCore.dll` or b) change the code to retrieve the appropriate *parent* DLL (addin or standalone). ``` System.Reflection.Assembly ass = System.Reflection.Assembly.GetExecutingAssembly(); ``` " __label__enhancement Add left and right buttons for structure creation __label__enhancement admin管控支持https 提高安全保障 "__label__enhancement PaMpeR: re-implement the proof_advice command Given a proof obligation (PO) and its surrounding proof context and state, the proof_advice command 1. convert the PO and its surrounding context and state into an array of boolean. 2. investigate how likely an ideal proof engineer uses each method for proof obligations abstracted into the same array, by looking up the corresponding branch in the decision tree for each method. 3. pick up the 5 most promising methods." "__label__bug [TW-8] project name display problems _t charles yun says:_ For a variety of not-so-clever-reasons, I have two projects whose names are different numbers of periods, ""......"" and ""............"" the command: task proj:""."" properly displays the project summaries. However, the command: task project gets confused by the periods and displays successive periods on different lines. I note that this is probably my abuse of bash (xref: http://taskwarrior.org/issues/864 ) more than a task issue.`" "__label__enhancement [TW-300] task changes: show the last x number of changes _Jeroen Budts on 2013-11-26T20:12:56Z says:_ While developing a script for taskwarrior it could be useful to see a log of the last 10 or so changes made to the tasks. The command could be: (at)task changes 10@ (where 10 is the number of changes you want to see) The output could basically be the same output as displayed by the (at)task undo@ command, but instead of asking to undo the change it could just list all the changes below each other." __label__bug Integrate Greenkeeper with lock file Actually Greenkeeper is not able to upload updated lock file to GH. Small tweak to Travis configuration should fix it. "__label__bug [NEURON] Not all LED events are not emitted via the WebSocket ### Prerequisites * [ ] Are you running the latest Master or the latest release version? 2.0.1 ### Description On the Neuron if you change the LED state via the HTTP control panel, WebSocket events are only emitted for circuit 1.01. Example toggling 1.01 I will receive: ``` { value: 0, circuit: '1_01', dev: 'led', glob_dev_id: 1 } ``` ``` { value: 1, circuit: '1_01', dev: 'led', glob_dev_id: 1 } ``` Toggling 1.02, 1.03 or 1.04 no output is received. " __label__bug Switching instruments on the Datasets list doesn't work Fix! :) __label__bug editing body in external editor removes data Case: body in this url http://localhost:7071/index.php/email_template/edit/id/404 must be something about the data since it works in other cases "__label__enhancement Dependency detection for package init In order to make creating packages from existing projects easier, it would be useful to implement automatic dependency detection. This would involve mapping common include names to their repository URIs: `#include ` -> `samp-incognito/samp-streamer-plugin` Of course not all libraries can be covered, some conflict (westie and slice both created a `strlib`) and version cannot be inferred from just the include line but it would at least be a good starting point for people." "__label__enhancement array funtion unsupport count length hi, i check all the Array Functions i can find the function for count array length is that unsupport? " __label__bug [Page de résultats] Les stats de l'analyse ne sont pas affichées "__label__bug OnExecute Extension method breaks async actions The `OnExecute` extension method provides a way to pass an `Action` delegate rather than a `Func` delegate, but it also breaks if the delegate is an `async` method. ```c# /// /// Sets with a return code of 0. /// /// /// public static void OnExecute(this CommandLineApplication app, Action action) => app.OnExecute(() => { action(); return 0; }); ``` This breaks (because the method is not awaited): ```c# app.OnExecute(async () => { ... if(someReason) throw new SomeException(); }); ``` But this works: ```c# app.OnExecute(async () => { ... if(someReason) throw new SomeException(); return 0; }); ``` " "__label__question Error: /srv/api/node_modules/sharp/build/Release/../../vendor/lib/libvips-cpp.so.42: file too short I am getting the following error when starting my nodejs application on the AWS server: `Error: /srv/api/node_modules/sharp/build/Release/../../vendor/lib/libvips-cpp.so.42: file too short` The npm install is working fine and it is also working on my local environment: macOS High Sierra. On the server side, I am using a docker image based on ubuntu." __label__enhancement Create socket for each request "__label__bug Users are not being created with a userId When users are created, no `userId` attribute is being set. This is also not present in the current `user` model. This causes duplicate errors. Note that `userId` is different from the `_id` attribute, which is automatically generated by mongo. Mongo patterns generally suggest relying on `_id`. As far as I can tell `userId` is currently only being used for ease of granting `superadmin` status via `db.users.update({'userId': 6}, {$set: {'superadmin': true}})`. However, this might cause confusion with `_id`. Either we have to set up an autoincrementing `userId` attribute and set it with user creation or remove `userId` altogether. On the live instance, it appears that `userId` is only set for the first 16 users, which is likely because of this issue." "__label__bug [TW-1890] annotate sometimes deletes a task _Alexander Bernauer on 2017-01-30T13:14:05Z says:_ Hi! It seems that sometimes trying to annotate a task makes that task disappear. I could not figure out a pattern behind this yet. h1. Example {code} $ task add proj:summit scheduled:2days wait for team to provide availability Created task 51. The project 'summit' has changed. Project 'summit' is 16% complete (5 of 6 tasks remaining). $ task 51 info Name Value ID 51 Description wait for team to provide availability Status Pending Project summit Entered 2017-01-30 13:25:04 (2s) Scheduled 2017-02-01 13:25:04 Last modified 2017-01-30 13:25:04 (2s) Virtual tags PENDING SCHEDULED UNBLOCKED LATEST PROJECT UUID 955876ac-b2c8-4355-8154-955b5863b158 Urgency 1 project 1 * 1 = 1 ------ 1 $ task 51 annotate ""https://docs.google.com/spreadsheets/d/1_UM1Ryq0yNxq-jvnBdBmb1qMWwQ4ar39hMcgbcpJVc0/edit#gid=0"" No tasks specified. $ task 51 info No matches. $ task add proj:summit scheduled:2days wait for team to provide availability Created task 51. The project 'summit' has changed. Project 'summit' is 14% complete (6 of 7 tasks remaining). $ task 51 annotate ""https://docs.google.com/spreadsheets/d/1_UM1Ryq0yNxq-jvnBdBmb1qMWwQ4ar39hMcgbcpJVc0/edit#gid=0"" Annotating task 51 'wait for team to provide availability'. Annotated 1 task. {code} h1. Meta * task version: 2.5.1 * running on OS X El Capitan, 10.11.6 * installed via brew Setting priority to major because this unexpected behaviour makes me worried about the consistency of my task system. Maybe other tasks get lost too and I don't realise? I went through the list of open bugs that have anything to do with `annotate` and could not find one that addresses this issue." __label__enhancement add Session.renewId The method will change the current/existing sessionId and keep the existing session data (if any) ``` Session session = req.session(); session.renewId() ``` "__label__bug card.alternate can be inconsistent between players depending on who loaded the cards into the game Player 1 loads a deck (into the shared piles). There are 6 copies of certain card in the loaded deck. Player 1 moves 2 of these (same named) cards onto the table. Player 1 flips over one of these 2 cards to its alternate side ""B"" If player 1 queries the card.alternate state of the cards on the table it correctly shows the flipped card has card.alternate == 'B' and the other card as card.alternate=="""" If, instead, player 2 moves the 2 cards to the table and flips over 1 of them BOTH cards when queried show alternate=='B' I have done a lot of testing of permutations (with 2 players) and it always works for the player who loaded the cards and goes wrong for the player who didn't load the deck. Note: This is only an issue if the 2 cards are the same named (i.e. GUID) card. " "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/fpUn_HC5AXgZa-8jwjKoK27nO4riiDX8wu54iylXcVETEaB4QhlPU8DLxdYg7Mx10/1UfI-hhUiJIwWwiU9i_k-_PsolSPOfyFHunq4pAtnVDgx0YGLuqrsJ2VmXMDij7J0/IEtnsyCWRfF7R6PrTlASoMj9vfaARbXhGEtxSWtrjYc1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__enhancement Support text blocks in scenarios ``` Scenario: Some description Given a precondition """""" This is a text block. More text. """""" ```" "__label__enhancement The ability to archive time It could be useful to archive time, rather than resetting or removing it, so that time data can be analysed later on." "__label__question Student Enrolment - SuiteCRM to Moodle Hi Stéphane, I hope you are well and hope you had a great weekend! I'd be grateful if you kindly suggest how to enrol students on Moodle through SuiteCRM. I have following scenario; Students(Contacts) module in SuiteCRM to Users in Moodle [they are connected through Myddleware rule], this rule working perfectly fine. I have Course Enrolment module in SuiteCRM with following fields; - Students (linked to Students/Contacts module) - Enrolment Start Date - Enrolment End Date - Role ID (Student with value '5' - default value) - Course ID (for this, I created a Dropdown with course id in Moodle) _- User ID (I need help here how to achieve this)_ Now, I'd like to create another rule to enrol students on to different courses. I tried creating a rule for this, but it asked me to provide User ID in Moodle which was generated at the time of creating users (SuiteCRM to Moodle rule). How to get this or what is the easiest way to enrol students in Moodle through SuiteCRM? Many thanks for your time and I look forward to hearing from you. Best wishes, Mohamad" "__label__question Why font url path change if options.auto Hello, On line 77 of the Plugin. js file, I see ``` const urlPath = this.options.auto ? this.options.output : ''; let url = path.join(compilation.options.output.publicPath || '', urlPath, urls[type]); ``` The generated CSS file (auto === false) does not take into account the path (options.output) indicated in option. Which, in my case, causes a path error. I don't see in which case, the omission of the ouput option is justified? Thank you" __label__bug [trac import 2/3/14 by flavour] Chosen widget doesn't work when unhiding a create form e.g. /eden/gis/hierarchy works fine via: /eden/gis/hierarchy/create This widget is: https://github.com/flavour/eden/blob/master/static/scripts/chosen.jquery.js I guess it needs re-initialising once the create form is unhidden "__label__bug + (BOOL)resetKeychainWithError:(NSError * _Nullable *)error incorrectly returns NO if the keychain is empty `+ (BOOL)resetKeychainWithError:(NSError * _Nullable *)error` incorrectly returns `NO` if the keychain is empty. This can cause a problem when attempting to determine success or failure of the call. An empty keychain should have the same success value as a keychain that is successfully emptied. The call should only return `NO` when a legitimate error has occurred. The problem occurs in the call to ```objective-c + (BOOL)removeAllItemsForService:(NSString *)service accessGroup:(NSString *)accessGroup error:(NSError **)error ``` The method sets an initial `BOOL returnValue = NO;`, and then proceeds to remove each item. It only sets the `returnValue` to `YES` after it has successfully removed each item without error. This makes sense, except in the case where the list of objects is empty. In that case, there is no keychain error produced, causing `*error` to be `nil`, and the `returnValue` remains `NO`. So the `returnValue` indicates an error condition by it's `NO` value, but no error is produced. But since an empty keychain is effectively the same as a keychain that has been emptied, the `returnValue` should really default to `YES`. The current situation also causes special problems in Swift. Swift will convert the method signature for `+ (BOOL)resetKeychainWithError:(NSError * _Nullable *)error` to: ```swift static func resetKeychain() -> throws ``` Swift relies on the boolean return value to determine when to throw an error. Returning `false` (or `NO`) tells Swift there is an error, but not producing an error causes Swift to throw a `NilError`, which is very not descriptive of what the problem may be. Only returning `false` (or `NO`) when there is a legitimate error (and setting the error value), or `true` (or `YES`) for all other conditions fixes this problem. The 'Error Handling' section of the following link may be of some assistance: https://developer.apple.com/library/content/documentation/Swift/Conceptual/BuildingCocoaApps/AdoptingCocoaDesignPatterns.html#//apple_ref/doc/uid/TP40014216-CH7-ID6" __label__bug StreamGrepTool is broken in v5.1 "__label__enhancement Autopage title doesn't include site name Hi, I just got started with this gem - thanks! I use autopages for my collection pagination generation. All works fine, apart from that the title of the page using `:coll` only includes the collection name. I guess this is a feature, not a bug, but is there a way to let it include the main site title? For example, my site title is FooBar, my collection is Books. I want the title attribute to read ""Foobar - Books"" (or similar). Any way to do this? EDIT: I'm talking about the HTML `` attribute, not as per `my_page.title`, as seen in `header.html` in the examples. It would be superfluous inside `my_page.title`... I suspect this is in some way a stupid question, but I'd like to hear what you think. :)" "__label__enhancement Modo offline/online O projeto deve funcionar em modo offline. Para tanto, devemos criar novas classes na camada de serviço. Essas classes terão por objetivo abstrair a lógica de quanto utilizar a ApiService ou a DbService. A proposta inicial é que o app verifique se há dados salvos com menos de 1 dia: - Se sim, utilizamos a DbService - Se não, utilizamos a ApiService - Em casos de falha ao obter dados na ApiService, tentaremos utilizar a DbService Para os casos onde não for possível obter os dados de nenhuma das suas services, devemos apresentar uma tela informando ao usuário sobre a ausência de conexão com a internet." "__label__bug Fix _cpuid_string_supported Should return 0 if supported, but seems to return 0 no matter what." __label__bug Events registered through the API are removed on reload "__label__question diff_to_previous on ssd1306 #### Type of Raspberry Pi Orange Pi Zero, Armbian #### Linux Kernel version Linux dof 3.4.113-sun8i #10 SMP PREEMPT Thu Feb 23 19:55:00 CET 2017 armv7l GNU/Linux #### Expected behaviour Running `perfloop.py` or my applications with ssd1306 over i2c, I am not seeing a difference between `framebuffer=diff_to_previous` and `framebuffer=full_frame` anything special I need to do to enable the `diff_to_previous` behavior? Or does ssd1306 need the new `luma.core.framebuffer` behavior as seen in ssd1331? https://github.com/rm-hull/luma.oled/blob/master/luma/oled/device.py#L214-L222 #### Actual behaviour ``` python perfloop.py --display ssd1306 --i2c-port 0 --i2c-address 0x3c --framebuffer diff_to_previous Testing dislay rendering performance Press Ctrl-C to abort test Namespace(backlight_active='low', bgr=False, block_orientation=0, config=None, display='ssd1306', framebuffer='diff_to_previous', gpio=None, gpio_backlight=18, gpio_data_command=24, gpio_reset=25, h_offset=0, height=64, i2c_address='0x3c', i2c_port=0, interface='i2c', mode='RGB', rotate=0, spi_bus_speed=8000000, spi_device=0, spi_port=0, v_offset=0, width=128) Display: ssd1306 Interface: i2c Dimensions: 128 x 64 ---------------------------------------- #### iter = 310: render time = 50.57 ms, frame rate = 19.73 FPS ``` ``` python perfloop.py --display ssd1306 --i2c-port 0 --i2c-address 0x3c --framebuffer full_frame Testing dislay rendering performance Press Ctrl-C to abort test Namespace(backlight_active='low', bgr=False, block_orientation=0, config=None, display='ssd1306', framebuffer='full_frame', gpio=None, gpio_backlight=18, gpio_data_command=24, gpio_reset=25, h_offset=0, height=64, i2c_address='0x3c', i2c_port=0, interface='i2c', mode='RGB', rotate=0, spi_bus_speed=8000000, spi_device=0, spi_port=0, v_offset=0, width=128) Display: ssd1306 Interface: i2c Dimensions: 128 x 64 ---------------------------------------- #### iter = 310: render time = 49.75 ms, frame rate = 20.06 FPS ``` " "__label__bug Nonsense initial value change event ``` Checkbox checkbox = new Checkbox(""Checkbox label""); System.out.println(""Checkbox default is "" + checkbox.getValue()); checkbox.addValueChangeListener(e -> { System.out.println(""Checkbox value changed from '"" + e.getOldValue() + ""' to '"" + e.getValue() + ""'""); }); add(checkbox); ``` Expected output: ``` Checkbox default is false ``` Actual output: ``` Checkbox default is false Checkbox value changed from 'null' to 'false' ``` " "__label__bug firehose_exporter crashes with fatal error: concurrent map iteration and map write We are running 3 PCF deployments, each of them being monitored by a prometheus bosh-release (19.0.0). On each of these envs we see every few days that the firehose_exporter stops providing data. Then checking the stderr log of the firehose_exporter job shows ""stack traces"" and a ""fatal error: concurrent map iteration and map write."" I cannot really find some correlation with things happening in these environments, they look completely random. The problem is very similar to https://github.com/bosh-prometheus/firehose_exporter/issues/17 . I will attach the complete stderr log (the stdout log is empty). Hopefully you can help finding the cause and a solution. thanks, Harry [firehose_exporter.stderr.log](https://github.com/bosh-prometheus/firehose_exporter/files/1685923/firehose_exporter.stderr.log) " "__label__enhancement Trade the dependency on `aws-sdk-go` for something smaller The AWS functions (`ec2tag`, `ec2meta`, etc...) add a lot of size to the binary (something like 13MBs, though less when UPX-compressed), _can_ slow things down, and aren't always used... A whole plugin architecture may be overkill for this project, but some way of lessening the impact would be useful. Alternatively a much lighter-weight client for the EC2 API calls would help. " "__label__bug [TW-441] urgency.over:6 missing one with 12 _David Patrick on 2012-08-30T20:32:48Z says:_ I guess the subject says it all. I'm trying to set an urgency threshold using attmods, and it ALMOST works. just doesn't list the task with urgency:12 (I'm displaying as integer) how does it work for you? After running a few _urgency.over:x_ and _urgency.under:y_ experiments, I can report a general inaccuracy :) (task 2.1.1 built for linux) can we set up a test for a few urgency.attmod: scenarios?" "__label__enhancement Automated generation of annotated layouts for templates I'm working with a PowerPoint template at work and I find going back and forth with the layout_properties/add_slide functions to be a little tedious and confusing. I think it be convenient if Officer could create an annotated layout to make identifying layouts, masters, and indices a little easier. The attached code will load all of the layouts in a given template. For each layout it will create a title indicated the layout and master names. For each body it will identify the index. Basically I use the resulting file to help me identify (visually) the layouts and indices to make coding a little more straight forward. Before, if I had a layout with a bunch body fields, I would just start putting in values, generate the output file, look at it, go back and modify my code. This is an example script: [make_layout.txt](https://github.com/davidgohel/officer/files/1674738/make_layout.txt) This is what the generated file looks like: [annotated_layout.pptx](https://github.com/davidgohel/officer/files/1674719/annotated_layout.pptx) I really like Officer and I think it's going to be very useful for me. I think something like this might make it a little better." "__label__enhancement Packaging the library to PyPI Using the correct repository formatting, the goal would be to release the library in the Python Package Index (PyPI), so we could install it via pip. I will list here what needs to be done. - https://wiki.python.org/moin/CheeseShopTutorial#Submitting_Packages_to_the_Package_Index - http://www.diveintopython3.net/packaging.html" "__label__bug Grid header selection does not work properly when sorting is enabled https://plnkr.co/edit/zw5pjVWbUQh6TAKUDAAU?p=preview Checkbox stays unchecked when clicked, and sorting is applied by default for the column and can't be disabled." __label__enhancement Template - Projekt Bearbeiten Die Projekte Bearbeiten Seite soll im Rattler Design angezeigt werden. "__label__bug Distance calculation is wrong in the average Average Linkage concrete implementation computes the distances wrong. The correct distance should be the following. ### Clusters *C1{A,B}, C2{C,D}* ### Distance between C1 and C2 *d(C1,C2) = (d(A,C) + d(A,D) + d(B,C) + D(B,D)) / 4*" "__label__question Confused about using Tus as an Uppy plugin I am a bit confused about what Tus would add as a plugin for Uppy. Reading through the docs, the features mentioned seem to already come out of the box with Uppy (ability to pause/resume, automatic continuation of upload after internet connection is lost etc). What would I gain by adding Tus as a plugin that I don't yet have?" "__label__enhancement Analyse - Standartwerte Die Standardwerte in den Analysen sollten bekannt sein und an den jeweiligen Inputs als Placeholder angezeigt werden (HTML Attribut ""placeholder"")" __label__enhancement Try out InfectionPHP on this "__label__bug Payflow admin order note showing PayPal Pro payment rather PayPal Payflow Pro payment completed Issue discussed, ![image](https://user-images.githubusercontent.com/11312949/35899244-1a462448-0bed-11e8-8602-e27b13886291.png) " "__label__bug Refresh token suddenly not working after one day Since you resolved the other issue I raised so quickly, I thought I'd also let you know about this. We had an OAuth refresh token generated and working great with this perl library for over a year. When we upgraded to the latest version of this library, the refresh token suddenly stopped working and started returning this error: [Fri Jan 26 15:47:57 2018] Died - { ""error"": ""invalid_token"", ""error_description"": ""Invalid Value"" } So, multiple times, we followed the instructions to generate a new refresh token. It worked with the new refresh token for 1 day. Then suddenly the refresh token stopped working again and gave the same error! (Even though all Google documentation says that the refresh token is *never* supposed to expire!) We tried the same process about 4 times before giving up and using the JSON file approach instead. The JSON file approach works without any issues. Again, Important notes: 1. This never happened before and only started happening after upgrading the library. 2. Google OAuth refresh tokens are never supposed to expire. 3. The refresh token does work for one day and then suddenly stops working, so the process to generate the refresh token is in fact being done properly. (We successfully see a conversion uploaded to adwords in our logs.) " "__label__bug Untranslated text remains in 2.4.1 I am using an Xperia M running Lineage 14.1 (Android 7.1.1), and am on Calendula 2.4.1 (F-Droid). My system language is _English_. * On the home tab, it says ""tomate tus medicinas ahora"" (??you have taken your medicine already??). * The titles of the other three tabs are ""Routines de Usuario"", ""Medicines de Usuario"", and ""Schedules de Usuario"". * In the second tab it says ""Sin pautas asociadas"" (including the double space). * In the Menu, when i choose ""Patients"", i come to a page titled ""Pacientes"", and a user image subtitled ""Usuario"". When I create a new user, it gives me the option ""Crear rutinas por defecto"" possibly related to issue #72 (which i then might have closed prematurely)" "__label__enhancement Remove composer install command since this is already a pre requirement anyway, this should probably be removed here. refs @a-sabaa issues of working with branches in core as well. OR: At least provide a flag to disable (-n or --no-composer) etc. Useful especially for core dev." "__label__bug Detail buttons should be grayed out when disabled on push and pull tabs. #### Software versions Briefcase v1.9.0 beta #### Problem description On the pull and push tabs, the detail buttons always look enabled even when they are unclickable. #### Steps to reproduce the problem Connect to a server to pull or push. #### Expected behavior Match the export tab -- when there are details, the button should be enabled. When there are none it should be disabled." __label__enhancement Add method expandAll/collapseAll for Tree and TreeGrid - Vaadin version 8.1.3 In the moment there is only a function to expand a specific item or a list of items. But for the list the items are only expanded for the root elements. So either expand should scan the childs (via childItemProvider?) in the list and expand them or make a method without parameter for expanding and collapsing all items. __label__enhancement Add OutputFile property to CloudServiceQueryRunnerResponse __label__enhancement Make the carousel 16:9 __label__bug Activities using ASyncTask crash Activities using asynctasks crashes when there is a network connection but fails to connect due to some network issue __label__question Cron Jobs Adding and error issue Hello I have added cron job commands code from admin panel cron settings into server cron tab and still i am facing that Admin Panel showing cron errors so what is the problem ? Thanks __label__enhancement add disclaimer on order page Include a disclaimer in the confirmation order email/text that states that delivery time is contingent on fitting. “Any delay in fitting time will cause an equal delay in the delivery time.” __label__enhancement The *classy* approach Provide means for class focused developers to have a decorator doing the following: * auto registering an action * cloning the current state before passing it to the action * dispatching the mutated current state clone as next state The following should be possible ``` export interface TestState { counter: number; } @inlineView(` <template> <h1>Store Component</h1> </template> `) @inject(Store) export class StoreComponent { public state: TestState; constructor(public store: Store<TestState>) {} attached() { this.store .state .subscribe((newState: TestState) => this.state = newState); } @registerAction({mutateState: true}) public incrementAction(currentState: TestState) { currentState.counter++; } clickHandler() { this.incrementAction(); } } ``` "__label__question Question: cannot connect to gateway I'm getting started to build OpenFaaS via https://github.com/openfaas/faas/blob/master/TestDrive.md. However, I ran into a problem which I can't connect OpenFaaS UI even though running ./deploy_stack.sh has been successful. Here is a log what I was doing. ``` $docker swarm init --advertise-addr eth0 && git clone https://github.com/openfaas/faas && cd faas && git checkout 0.6.17 && ./deploy_stack.sh && docker service ls Swarm initialized: current node (mwd6ddt04j2fh7z4yqeazalch) is now a manager. To add a worker to this swarm, run the following command: docker swarm join --token <token> 10.0.2.15:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. Cloning into 'faas'... remote: Counting objects: 14502, done. remote: Compressing objects: 100% (35/35), done. remote: Total 14502 (delta 25), reused 45 (delta 22), pack-reused 14443 Receiving objects: 100% (14502/14502), 21.32 MiB | 1.88 MiB/s, done. Resolving deltas: 100% (5134/5134), done. Checking connectivity... done. Note: checking out '0.6.17'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by performing another checkout. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example: git checkout -b <new-branch-name> HEAD is now at afeb7bb... Update community file on behalf of Magnus Persson Deploying stack Creating network func_functions Creating service func_echoit Creating service func_base64 Creating service func_wordcount Creating service func_gateway Creating service func_nats Creating service func_markdown Creating service func_alertmanager Creating service func_decodebase64 Creating service func_queue-worker Creating service func_nodeinfo Creating service func_webhookstash Creating service func_hubstats Creating service func_prometheus ID NAME MODE REPLICAS IMAGE PORTS 2py54x2yvkzp func_queue-worker replicated 1/1 functions/queue-worker:0.4 4jy4qx4bqgn9 func_hubstats replicated 1/1 functions/hubstats:latest 5tc9h6xruvo8 func_webhookstash replicated 1/1 functions/webhookstash:latest 9mhx12i8yj0d func_gateway replicated 1/1 functions/gateway:0.6.15 *:8080->8080/tcp hywhlib8hzyw func_base64 replicated 1/1 functions/alpine:latest i0ykbw7ly0dj func_wordcount replicated 1/1 functions/alpine:latest ixirsw508l1p func_markdown replicated 1/1 functions/markdown-render:latest n4iy8ijt5w3e func_prometheus replicated 0/1 functions/prometheus:latest *:9090->9090/tcp n4skaejedy4o func_nats replicated 1/1 nats-streaming:0.6.0 tjq8xdtwbxoq func_nodeinfo replicated 1/1 functions/nodeinfo:latest u9bbqvpvfur7 func_decodebase64 replicated 1/1 functions/alpine:latest xxi0r2svvhkb func_alertmanager replicated 1/1 functions/alertmanager:latest zuq2l6tz468y func_echoit replicated 1/1 functions/alpine:latest [horike@horiketakahiro-no-MacBook-Pro faas]$wget http://127.0.0.1:8080 --2018-02-06 04:57:49-- http://127.0.0.1:8080/ Connecting to 127.0.0.1:8080... failed: Connection refused. ``` I have confirmed nothing to build any other service on 8080 port. Any ideas why? Am I missing anything else? ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * Docker version `docker version` (e.g. Docker 17.0.05 ): ``` docker version Client: Version: 17.06.1-ce API version: 1.30 Go version: go1.8.3 Git commit: 874a737 Built: Thu Aug 17 22:53:38 2017 OS/Arch: darwin/amd64 Server: Version: 18.01.0-ce API version: 1.35 (minimum version 1.12) Go version: go1.9.2 Git commit: 03596f5 Built: Wed Jan 10 20:13:12 2018 OS/Arch: linux/amd64 Experimental: false ``` * Are you using Docker Swarm or Kubernetes (FaaS-netes)? Docker Swarm * Operating System and version (e.g. Linux, Windows, MacOS):MacOS " __label__enhancement enable custom labels for both axes in pointestimate / continuous plots At the moment users are only able to adjust the label for one axis in pointestimate / continuous plots. Need to add a text field for both of them. "__label__bug Problem with Reflector affecting lighting when its texture is rendered. ##### Description of the problem I have a problem with changes to lighting when Reflector object is used. I have distilled the problem down here: https://jsfiddle.net/cmd4/9zLhq9Lf/ You should see that the lighting on the walls changes whenever you rotate the view, as the mirror changes between facing towards and away from the camera. Note that to show the problem, it seems to require adding the Reflector object before the first render, and the rest of the scene after the first render. i.e. If I create the whole scene before the first render, then I don't seem to get any issues. My guess is that the problem may be related to setting up GL state for the point light when rendered for both the main camera and the ""virtual"" camera created by the Reflector class. Maybe in this function below, but here I am out of my depth: (from https://github.com/mrdoob/three.js/blob/dev/src/renderers/webgl/WebGLLights.js) ``` setup( lights, shadows, camera ) { ... var viewMatrix = camera.matrixWorldInverse; ... } else if ( light.isSpotLight ) { var uniforms = cache.get( light ); uniforms.position.setFromMatrixPosition( light.matrixWorld ); uniforms.position.applyMatrix4( viewMatrix ); <<<<HERE??? ... ``` ##### Three.js version - [x] Master - [x] r88 ##### Browser - [x] Chrome - [x] Firefox - [x] Edge ##### OS - [x] Windows - [ ] macOS - [ ] Linux - [x] Android - [x] iOS " "__label__bug Issues with Calendar in grid I noticed two things about the calendar control in the grid. 1. If you save the record while the calendar is displaying, the calendar is not removed and you CAN'T remove it. 2. If your grid extends down to the bottom of your browser window, the calendar will bleed off the bottom of the window. " __label__bug Root permission drop when edit room __label__bug Concent API without gatekeeper feature enabled fails when trying to check if file has been uploaded `get_file_status()` function uses `reverse('gatekeeper:download')` to get the path of the `/download/` endpoint. This obviously won't work when gatekeeper URLs are disabled - and this is always the case in the `concent-api` container. Fix this by extracting the `/download/` part from urlconfig into a constant that can be used even when URLs are disabled. "__label__question difference between sync and async distributed training. Hi, I am trying to understand the distributed training perf on GPU clusters, little confused about the following 2 distributed parallel mode: #1 sync mode will run worker jobs on PS GPU devices, and shard the variables across GPU0 in PS replicas. #2 async mode will shard the variables across PS services (GPU0 for PS replicas), but running the worker job on worker replicas. right? what's the sync and async here means? why it is called sync and async? what's the motivations for the sync and async mode? Could someone give some explain? Thanks." "__label__bug 【マイリスト画面】投稿日時が""00""月になってしまう場合がある <img width=""1000"" alt=""2018-02-05 21 09 11"" src=""https://user-images.githubusercontent.com/15723021/35808378-efa13a36-0ac8-11e8-9320-f06af6ce53f1.png""> 【環境】 NicoHaco v1.0.0 Mac版 & Win版 macOS 10.13.1 Windows 10 【内容】 ・""06"", ""07"", ""09""月の時だけ""00""月表記になる ・他のマイリストも確認したが,同様に上記の月だけ""00""月表記になっていた ・マイリストだと日付表記がおかしい動画を""My Page""の""History""や検索結果画面で見ると正しく表示される ・Windows版およびMac版両方試したがどちらでも発生した" __label__bug 0.17.0 飞船升星的分享界面分享图出去,但是在FB那里取消后,卡在了一个界面,按返回键没用,需要杀进程 __label__enhancement Export private key Add ability to export private key "__label__bug Loading an in-flight savegame misaligns the ISDC's SRBs Position looks correct, but their direction is wrong. Sadly github won't let me upload a screenshot right now... will do that once github works again." "__label__enhancement Flot options If possible, can we have more flot options? Especially line colors, width, fill, curved lines, etc. Same for ""points"". http://docs.easydigitaldownloads.com/article/498-edd-graph " __label__bug Falsche Bilder in der Steckbriefübersicht (profiles) Aktuell wird überall nur das Schwefelbild als Vorschau angezeigt. "__label__bug Bug in debug:container | Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | no | RFC? | no | Symfony version | 4.0.4 I'm not quite sure but it seems to be a bug here to me. I'm upgrading a SF 3.4 application to SF 4 and got the typical `private/public` service issue when I ran my behat tests: ``` The ""lexik_jwt_authentication.jwt_manager"" service or alias has been removed or inlined when the container was compiled. You should either make it public, or stop using the container directly and use dependency injection instead. ``` Okay, my service is probably not public and when I debugged in the `RemoveUnusedDefinitionsPass` that actually seems to be true (`$definition->isPublic()` returns `false`), but when I run `bin/console --env=test debug:container lexik_jwt_authentication.jwt_manager` I get this: ``` Information for Service ""lexik_jwt_authentication.jwt_manager"" ============================================================== ---------------- ---------------------------------------------------------- Option Value ---------------- ---------------------------------------------------------- Service ID lexik_jwt_authentication.jwt_manager Class Lexik\Bundle\JWTAuthenticationBundle\Services\JWTManager Tags - Calls setUserIdentityField Public yes Synthetic no Lazy no Shared yes Abstract no Autowired no Autoconfigured no ---------------- ---------------------------------------------------------- ``` So the debug command tells me it's public, even if it does not seem to be. " "__label__bug Full wallet initial creation is doesn't work Full wallet initial creation is doesn't work ## Current Behavior Creating a full wallet with initial run doesn't create full wallet, but light wallet. There is no database sync. ## Steps to Reproduce (for bugs) Initial run -> Get started -> confirm the terms -> CUSTOM SETTINGS -> DOWNLOAD THE ENTIRE DAGCOIN DATABASE -> enter name of device -> get started -> • Created **light wallet** • DB is not downloading ## Your Environment • Windows 10 • testnet ## Expected Behavior * user can create full wallet with initial run according to steps: Initial run -> Get started -> confirm the terms -> CUSTOM SETTINGS -> DOWNLOAD THE ENTIRE DAGCOIN DATABASE -> enter name of device -> get started" __label__enhancement Make the .index directories browsable It seems that currently the `.index` directories in Maven 2 repositories are not browsable. We should allow browsing them. "__label__bug Environments disappear, when user logouts and logins back REPRODUCTION: 1. Run Tray 2. See Environments 3. Logout (do not close tray) 4. Login 5. See Environments (environments menu is empty) " "__label__bug When a new folder was created, select it automatically When I create a new folder (e.g. F7) I'd like to have that folder automatically selected so that I can immediately enter the new folder (to continue with some file/folder creation or copy operations)" "__label__enhancement Solr facets can be better We should have more facets for ""Status"" and ""Legislation type,"" as well as facets for sponsors. <img width=""423"" alt=""screen shot 2017-12-05 at 3 24 43 pm"" src=""https://user-images.githubusercontent.com/13078679/33631683-e6ee08de-d9d0-11e7-8e9a-2f72abe5ae8e.png""> [Check the logic for solr indexing.](https://github.com/datamade/django-councilmatic/blob/master/councilmatic_core/haystack_indexes.py)" "__label__enhancement proxy server + config file This would also require the cli to accept a config file (path passed as `---config=[path/to/config]`) instead of passing all of the config as cli arguments. ``` // flyswatter.config.js module.exports = { https: true, path: './', port: 8080, proxy: { '/api': 'http://127.0.0.1:50545' } }; ``` The general idea would be to have the `server` function iterate over the proxy object and add the routes to the express server using `app.use` to support all methods (`GET`, `POST`, `PUT`, etc). We also probably want to pass request headers along from the client to the server we're proxying to. " __label__bug Update recipe limit check after delete If a user has reached the recipe limit a red bar is shown ontop of the recipe list. This message should vanish after a user has deleted enough recipes. "__label__question Missing files in the report Maybe I am missing the point, but my issue is different than the one described in the FAQ. My library consists of many files, but only some of them are displayed in the report and taken into account to calculate the coverage. Is it because I am ""including"" them somehow in the tests? Is there a way to automatically include all my sources? I am running in Windows 10 x64 with Visual Studio 2017." "__label__bug jsdoc2spec generates wrong line ranges in the index.idx file In the checked-in example, the line range numbers are incorrect (e.g. 22 and 23, or 24 and 41). (Example location: `n4js/tests/org.eclipse.n4js.jsdoc2spec.tests/testresourcesADoc/SpecSample1`) **Generated file index.idx** ``` n4js#tests.org.eclipse.n4js.jsdoc2spec.tests.testresourcesADoc SpecSample1#src NO_PACKAGE A.n4jsd A::15::22::23 A#bar::20::24::41 A#baz::27::42::61 B::30::65::66 B#foo::31::67::82 ``` " "__label__enhancement Better event and technical metadata using IsoBuster's reporting features Starting with IsoBuster 4, reporting is possible on LOTS of things, see here: <https://www.isobuster.com/help/use_of_command_line_parameters#export-list> Also DFXML output: <https://www.isobuster.com/dfxml-example.php> (Caveat: 1 filesystem at a time, apparently)." "__label__bug Config option can't find config file | Q | A | --------------- | --- | Version | `13.1` | Bug | yes **Steps to reproduce:** ```sh $ cat grumphp.yml.dist # output parameters: bin_dir: ""./vendor/bin"" git_dir: ""."" ... $ grumphp -c grumphp.yml.dist run ``` **Result:** ``` PHP Fatal error: Uncaught InvalidArgumentException: The file ""grumphp.yml.dist"" does not exist (in: grumphp/src/Configuration/../../resources/config). in grumphp/vendor/symfony/config/FileLocator.php:68 ``` " "__label__enhancement tab: keyboard accessibility buff https://pluralsight.slack.com/archives/C5CMEKH5Z/p1514909968000312 https://webaim.org/techniques/keyboard/ Use arrows instead of tabs when changing tabs, staying on page. Should we support page changing too? Maybe not?" "__label__enhancement Create system for help docs? @pwalsh wrote: Users should be able to contribute to creating help docs that correspond with errors we throw in the pipeline. these docs can be shown on the web via the contextual help in goodtables-web. This has been somewhat stubbed out there. Actions: - [ ] Create a new repo for content only (goodtables-handbook, goodtables-help, etc.) - [ ] Have a markdown docs that corresponds with the ID of each error in goodtables - [ ] pull the markdown content in as the help content for the errors - [ ] take this chance to tidy up the report result types a bit - e.g.: use sequential names ""schema_001"", ""structure_014"", etc." __label__enhancement Replace original gitlab-runner with lightweight gitlab-runner-helper Currently original `gilab-runner` is used and image is [built on top](https://github.com/instrumentisto/gitlab-builder-docker-image/blob/46738c71fa0fd6ec385ec8ec53732f701795d074/Dockerfile#L2-Lundefined) of [Gitlab Runner image](https://hub.docker.com/r/gitlab/gitlab-runner). But it can be replaced with lightweight [`gilab-runner-helper` version](https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/tree/cc417de4c4527a0203d89112ed356fd4f5c37959/apps/gitlab-runner-helper) which can minimize the size of image. "__label__enhancement Document & automate usage of special directories The BBS automatically pulls packages from the following folders on `linux1.bioconductor.org` : ``` biocbuild@linux1:~/bbs-3.2-bioc/MEAT0 biocbuild@linux1:~/bbs-3.2-data-experiment/MEAT0 ``` These folders are configured as a part of the release process. There is mention of this in the documentation (without detail) : https://github.com/Bioconductor/BBS/blob/master/Doc/prerelease_and_release_checklist.txt#L144 However, this should be explicit (and in the long term much of this should be automated). The following steps should be taken toward the goal of increased maintainability : 1. Explicitly call out the steps needed as a part of the release process: 1. Explicitly say each step involved in moving and configuring resources (`mv x y` and `svn co foo`) 2. Create a shell script doing the manual steps; which replaces the manual task of `mv x y` and `svn co foo`. 1. Use variables; rather than saying `cd ~/bbs-3.2-bioc`, an administrator should be able to do `cd ""$BBS_CURRENT""`. 1. An environment variable such as this may not already exist, but the string is likely used used in other places. If the environment variable does not exist, we need to determine the canonical place to configure the machine (automatically) with a variable like `BBS_CURRENT=""bbs-3.2-bioc""` 3. Lint all shell scripts using shellcheck upon every commit. An example of automating this is done in the [Travis CI configuration for my ServiceMonitoring module](https://github.com/b-long/ServiceMonitoring/blob/master/.travis.yml#L7). 4. Use the shell script to perform the tasks mentioned in the [prerelease_and_release_checklist.txt](https://github.com/Bioconductor/BBS/blob/master/Doc/prerelease_and_release_checklist.txt#L144) 1. In the short term, and administrator can run the script 2. In the long term, an automated process can run the script ##### Note: _I realize the above is a big target and we won't expect to complete this work right away_. However, item 3 is rather easy and we can begin integrating processes like automated testing into parts of Bioconductor when time permits. cc @dtenenba " __label__enhancement Triangle Overlap Queries Create basic overlap tests with all other shapes. Useful things to Google: Separating axis theorem. Normal force. http://www.realtimerendering.com/intersections.html "__label__enhancement [TW-159] show sort field(s) as bold in listing headers _David Patrick says:_ subject says all This was filed as specific to vit, but it would be better (and easier to do) as a tw feature, and vit inherits that. If the subject DOESN'T say it all, the idea is to have the first (visible) sort field of each report cause the field-name, in the listing header, to be bolded. That way, when you look at a report, you can know instantly what the primary sort-key this list is sorted on." "__label__bug open last downloaded file, not opening last file Case: - current state of browser. Not sure how to reproduce but could be related to file extension. - downloaded a doc - downloaded an image - it reopens the .doc instead of the .png" "__label__bug MATERIALIZED VIEW无法解析 SQLUtils.parseStatements(""DROP MATERIALIZED VIEW ATOM_MVIEW.NONAUTO_CLAIM_FOLDER_T;"", ""oracle""); Exception in thread ""main"" com.alibaba.druid.sql.parser.ParserException: TODO : pos 17, line 1, column 5, token IDENTIFIER MATERIALIZED" __label__enhancement `RedisCache.clear()` should not invoke `Redis_client.keys` **Issue:** `werkzeug.contrib.cache.RedisCache.clear()` invokes `Redis_client.keys(..)` The `KEYS` command is not [recommended](https://redis.io/commands/keys) for production usage. Python: 2.7.6 Werkzeug: Latest version **Proposal:** Update the `clear` method to use the recommended 'SCAN' command of redis. If there is agreement on this feature - I can attempt a patch. __label__enhancement Update swagger UI to v3 "__label__bug Improve error handling when using discovery and a conflict occurs with an existing extension I got the following unfriendly output when there was a collision with an existing integration extension: ``` chaos discover chaostoolkit-kubernetes [2018-01-30 15:35:15 INFO] Attempting to download and install package 'chaostoolkit-kubernetes' [2018-01-30 15:35:19 INFO] Package downloaded and installed in current environment Traceback (most recent call last): File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/chaoslib/discovery/package.py"", line 85, in get_importname_from_package name = dist.get_metadata('top_level.txt').split(""\n)"", 1)[0] File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/pkg_resources/__init__.py"", line 1493, in get_metadata value = self._get(self._fn(self.egg_info, name)) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/pkg_resources/__init__.py"", line 1605, in _get with open(path, 'rb') as stream: FileNotFoundError: [Errno 2] No such file or directory: '/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/chaostoolkit_kubernetes-0.8.0.dist-info/top_level.txt' During handling of the above exception, another exception occurred: Traceback (most recent call last): File ""/Users/russellmiles/.venvs/chaostk/bin/chaos"", line 11, in <module> sys.exit(cli()) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/click/core.py"", line 722, in __call__ return self.main(*args, **kwargs) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/click/core.py"", line 697, in main rv = self.invoke(ctx) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/click/core.py"", line 1066, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/click/core.py"", line 895, in invoke return ctx.invoke(self.callback, **ctx.params) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/click/core.py"", line 535, in invoke return callback(*args, **kwargs) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/click/decorators.py"", line 17, in new_func return f(get_current_context(), *args, **kwargs) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/chaosiq/cli.py"", line 140, in discover download_and_install=not no_install) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/chaoslib/discovery/discover.py"", line 30, in discover package = load_package(package_name) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/chaoslib/discovery/package.py"", line 45, in load_package name = get_importname_from_package(package_name) File ""/Users/russellmiles/.venvs/chaostk/lib/python3.6/site-packages/chaoslib/discovery/package.py"", line 89, in get_importname_from_package ""Was the package installed properly?"".format(p=package_name)) chaoslib.exceptions.DiscoveryFailed: failed to load package 'chaostoolkit-kubernetes' metadata. Was the package installed properly? ```" "__label__bug Several compilation problems on Arch linux and Debian 9.3 #### Steps to reproduce 1. Install latest OpenSSL and toolchain on either Arch linux or Debian 9.3 (""stretch""). 2. Configure and build. #### Errors ```cpp /home/fox/okhttp-fork/lib/ssl/Context.cpp: In constructor 'ohf::ssl::Context::Context(ohf::TLSVersion)': /home/fox/okhttp-fork/lib/ssl/Context.cpp:19:43: error: 'SSLv2_method' was not declared in this scope method = SSLv2_method(); ^ /home/fox/okhttp-fork/lib/ssl/Context.cpp:23:43: error: 'SSLv3_method' was not declared in this scope method = SSLv3_method(); ^ ``` This error can be easily fixed by removing SSL-related constructions from Context.cpp: ```diff diff --git a/lib/ssl/Context.cpp b/lib/ssl/Context.cpp index fd08a23..9b4ffa5 100644 --- a/lib/ssl/Context.cpp +++ b/lib/ssl/Context.cpp @@ -11,17 +11,6 @@ namespace ohf { Context::Context(TLSVersion version) : pImpl(new impl) { const SSL_METHOD *method; switch (version) { - case TLSVersion::SSLv23: - method = SSLv23_method(); - break; - #ifndef OPENSSL_NO_SSL2 - case TLSVersion::SSLv2: - method = SSLv2_method(); - break; - #endif - case TLSVersion::SSLv3: - method = SSLv3_method(); - break; case TLSVersion::TLSv1: method = TLSv1_method(); break; ``` But then we will get this error: ```cpp /home/fox/okhttp-fork/lib/ssl/SSL.cpp: In member function 'std::vector<ohf::ssl::CipherSuite> ohf::ssl::SSL::ciphers() const': /home/fox/okhttp-fork/lib/ssl/SSL.cpp:81:53: error: invalid use of incomplete type 'struct stack_st_SSL_CIPHER' auto stack = SSL_get_ciphers(pImpl->ssl)->stack; ^~ In file included from /usr/include/openssl/crypto.h:29:0, from /usr/include/openssl/comp.h:16, from /usr/include/openssl/ssl.h:47, from /home/fox/okhttp-fork/lib/ssl/Util.hpp:13, from /home/fox/okhttp-fork/lib/ssl/SSL.cpp:7: /usr/include/openssl/ssl.h:233:1: note: forward declaration of 'struct stack_st_SSL_CIPHER' STACK_OF(SSL_CIPHER); ^ ``` #### Note on SSL 1.0/2.0/3.0 support >In 2014, SSL 3.0 was found to be vulnerable to the [POODLE](https://en.wikipedia.org/wiki/POODLE) attack that affects all block ciphers in SSL; and RC4, the only non-block cipher supported by SSL 3.0, is also feasibly broken as used in SSL 3.0. > >SSL 2.0 was prohibited in 2011 by [RFC 6176](https://tools.ietf.org/html/rfc6176), and SSL 3.0 was also later prohibited in June 2015 by [RFC 7568](https://tools.ietf.org/html/rfc7568). -- [Wikipedia, Transport Layer Security page](https://en.wikipedia.org/wiki/Transport_Layer_Security#SSL_1.0,_2.0_and_3.0) I see no reason to support vulnerable protocol." "__label__enhancement Create account registration paradigm 1. Install and load slycat docker build a new branch for development DO NOT DEVELOP ON MASTER 2. Build a custom ""create account"" python module 3. Build custom create account ""password checker"" 4. Build web ui for create account" "__label__bug Base Minerals #6 has failed Build 'Base Minerals' is failing! Last 50 lines of build output: ``` [...truncated 2.34 KB...] :extractUserdev UP-TO-DATE :downloadClient SKIPPED :downloadServer SKIPPED :splitServerJar SKIPPED :mergeJars SKIPPED :applyBinaryPatches SKIPPED :deobfProvidedDummyTask :extractDependencyATs SKIPPED :extractMcpData SKIPPED :extractMcpMappings SKIPPED :genSrgs SKIPPED :deobfMcMCP SKIPPED :setupCiWorkspace :clean :sourceApiJava :compileApiJava UP-TO-DATE :processApiResources UP-TO-DATE :apiClasses UP-TO-DATE :sourceMainJava :compileJava/var/lib/jenkins/workspace/Base Minerals/build/sources/main/java/com/mcmoddev/baseminerals/integration/plugins/TinkersConstruct.java:26: error: cannot find symbol registerCasting(Materials.lithium, 144); ^ symbol: method registerCasting(MetalMaterial,int) location: class TinkersConstruct /var/lib/jenkins/workspace/Base Minerals/build/sources/main/java/com/mcmoddev/baseminerals/integration/plugins/TinkersConstruct.java:31: error: cannot find symbol registerCasting(Materials.silicon, 144); ^ symbol: method registerCasting(MetalMaterial,int) location: class TinkersConstruct 2 errors FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > Compilation failed; see the compiler error output for details. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 7.894 secs Build step 'Invoke Gradle script' changed build result to FAILURE Build step 'Invoke Gradle script' marked build as failure Archiving artifacts [Set GitHub commit status (universal)] FAILURE on repos [GHRepository@59c92c22[description=Base Minerals Mod,homepage=,name=BaseMinerals,license=<null>,fork=false,size=10479,milestones={},language=Java,commits={},source=<null>,parent=<null>,url=https://api.github.com/repos/MinecraftModDevelopmentMods/BaseMinerals,id=62172950]] (sha:26ee037) with context:Base Minerals Setting commit status on GitHub for https://github.com/MinecraftModDevelopmentMods/BaseMinerals/commit/26ee0375b9135d3fbf3976ad489d38f64f209269 ``` Changes since last successful build: - [Jasmine Iwanek] 26ee0375b9135d3fbf3976ad489d38f64f209269 - TiC Casting [View full output](https://ci.mcmoddev.com/job/Base%20Minerals/6/)" __label__enhancement Add tests __label__enhancement Optimize vertex coloring algorithm "__label__enhancement Advanced preferences for Mouse Clicks regarding ""Deletes History Temporary Containers"" Possibility to set ""Middle Mouse"" and ""Ctrl/Cmd LeftClick"" to always open ""Deletes History Temporary Containers"" instead of normal Temporary Containers. That way it's easy to decide between opening a ""Deletes History Temporary Containers"" and a normal one when clicking a link." "__label__enhancement [TW-315] Access parent task via 'task parent(ID) <cmd>' _Benjamin Weber on 2013-09-30T19:34:41Z says:_ What? Access the parent task of a recurring task, e.g. 426 (parent: 333) via 'task parent(ID)' Why? Currently a lookup via 'task 416 information' is required, followed by the final command 'task parentUUID mod <mods>'. How? Create a function which looks up the parent UUID for supplied ID as an internal replace mechanism. parent(id|uuid) -> parent_uuid" __label__bug Navbar doesn't link to About __label__enhancement Automaticaly determine lamb in independence tests using p-value "__label__bug Deleting region selection removes main spectrum from specviz When a region selection made on a flux image is deleted, the collapsed spectrum of the entire cube (the one that shows up upon reading in the cube) is deleted." "__label__bug Can't upload a project due to file size issues, not told how much I can use I'm trying to push up a (I think) relatively small Node project. When I run `now`, I get: ``` > Error! Upload failed > Error! An unexpected error occurred in deploy: Error: File size limit exceeded at responseError (/snapshot/now-cli/dist/now.js:187:15) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) ``` Ok, fair enough, but what *is* the limit? And what can I do to help fix the problem? As I said, it isn't a terribly big project. I assume node_modules is big, but that's not being pushed up I assume. " "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/aGCu0eC6v2LlDz5fHs7s03jKIUl8vN4v_wySvDK5Tw6wIxmRh1SMcF7x5QbxNyGb0/flccIwa8wuA-i5xLE6BJ4MQL8Ehcrtpb1_bwXqyAdWI_mZyoBG1YCxiZGHOcBlGO0/BXug7j3KXbqyH9AphSrwh6UwsHY9dK1CznEH5tt-OQ41) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__question HTML mode Is there a way to have HTML mode? Thx. __label__bug track which host CPU an allocation is on "__label__enhancement Practice using numbers and math functions. It would be useful to write some complete, working programs using Python numeric data types and functions from the math module.""" __label__enhancement Add support for OAuth 2 flavour of Basic Authentication "__label__question Clarify what environments are targeted by buble's codebase `react-styleguidist` uses `buble` in the browser, but unfortunately `buble` ships to npm codebase containing some es6 features. I'd only want to clarify what environments buble is targeting - in which node/browser versions it should run out of the box? Would you consider transpiling more features to support older browsers like IE11 or should we fix this in a tool like `react-styleguidist` by transpiling buble on our own?" "__label__enhancement Add Unit Tests Add unit tests for initialization, sending and receiving frames." __label__enhancement Extract testing infrastructure and release as testing module I think if we put some effort into the testing infrastructure we could pull it out into it's own module and ship it. The big benefits are that consumers of the library can actually do integration testing of their firebase database and geoquery data. "__label__bug panic: runtime error: index out of range in stereoProcessIntensityShort Hello. I found a index out of range bug in go-mp3. Please confirm. Thanks. reproduce code: ``` package mp3 import ( ""bytes"" ""testing"" ) type bytesReadCloser struct { *bytes.Reader } func (b *bytesReadCloser) Close() error { return nil } func TestFuzzing(t *testing.T) { inputs := []string{ ""\xff\xfb%S000000v000\x00\x010000"" + ""00000000000000000000"" + ""0000\xf4000000000000000"" + ""00000000000000000000"" + ""00000000000000000000"" + ""00000000000000000000"", } for _, input := range inputs { b := &bytesReadCloser{bytes.NewReader([]byte(input))} _, _ = NewDecoder(b) } } ``` Log ``` --- FAIL: TestFuzzing (0.00s) panic: runtime error: index out of range [recovered] panic: runtime error: index out of range goroutine 5 [running]: testing.tRunner.func1(0xc42004c750) /usr/lib/go-1.8/src/testing/testing.go:622 +0x29d panic(0x527020, 0x5e99f0) /usr/lib/go-1.8/src/runtime/panic.go:489 +0x2cf github.com/hajimehoshi/go-mp3/internal/frame.(*Frame).stereoProcessIntensityShort(0xc4200b6000, 0x0, 0x5) /home/karas/go/src/github.com/hajimehoshi/go-mp3/internal/frame/frame.go:337 +0x293 github.com/hajimehoshi/go-mp3/internal/frame.(*Frame).stereo(0xc4200b6000, 0x0) /home/karas/go/src/github.com/hajimehoshi/go-mp3/internal/frame/frame.go:398 +0x3b3 github.com/hajimehoshi/go-mp3/internal/frame.(*Frame).Decode(0xc4200b6000, 0xc4200149c0, 0x0, 0x0) /home/karas/go/src/github.com/hajimehoshi/go-mp3/internal/frame/frame.go:126 +0x119 github.com/hajimehoshi/go-mp3.(*Decoder).readFrame(0xc420018a20, 0x0, 0x0) /home/karas/go/src/github.com/hajimehoshi/go-mp3/decode.go:52 +0x17f github.com/hajimehoshi/go-mp3.NewDecoder(0x5d8ca0, 0xc42000c098, 0x78, 0xc42005a980, 0x78) /home/karas/go/src/github.com/hajimehoshi/go-mp3/decode.go:207 +0xc0 github.com/hajimehoshi/go-mp3.TestFuzzing(0xc42004c750) /home/karas/go/src/github.com/hajimehoshi/go-mp3/fuzzing_test.go:29 +0x126 testing.tRunner(0xc42004c750, 0x554a40) /usr/lib/go-1.8/src/testing/testing.go:657 +0x96 created by testing.(*T).Run /usr/lib/go-1.8/src/testing/testing.go:697 +0x2ca exit status 2 FAIL github.com/hajimehoshi/go-mp3 0.006s ```" "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/aGCu0eC6v2LlDz5fHs7s03jKIUl8vN4v_wySvDK5Tw6wIxmRh1SMcF7x5QbxNyGb0/xxXpWAwuTS2fIXMD5XMXAEv4bD-uFD4IHlVMbRgA9MYJpenzfWlU0dc5giQ3u30A0/saho59t9OZy1x939YiIxmPVHZo2hHHsdo5qZKj45bL41) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug Add virus blank form error Adding a new virus to the viruses database with blank input fields will result in a new virus entry added but with undefined props, therefore causes errors when attempting to delete the entry or to add isolate information." "__label__enhancement QA quarterly donor report increase the column for address, decrease the phone column and name column" "__label__enhancement [TW-489] Introduce ""color.uda.<myUDA>"" attribute _Florian Hollerweger on 2012-09-06T09:27:33Z says:_ Idea: It would be useful to custom-colorize tasks that have a certain UDA associated with them. To me it seems that an attribute ""color.uda.<myUDA>"" might provide a suitable syntax for this purpose. Rationale/Example: I use a UDA ""reply"" to implement a ""waiting for reply"" function, with the UDA being a string that specifies whose reply I am waiting for before continuing the task. It would be nice to see at one glance which tasks are awaiting a reply, and the color.uda.<myUDA> attribute could accommodate that." "__label__bug Deposit currency options not present in the dropdown I expected to see other deposit currency options, but currently it's only BAT and not able to change." "__label__bug Error due to extension difference on `gulp.config` If you have installed the CLI version 1.0.26 and set up a version of the toolkit that used `gulp.config.json`, and then you upgrade the CLI to version 1.1.*, you start to get errors when trying to run any command (e.g. `arcli --version`) because it's looking for `gulp.config.js`. You should bump the major version number, because that is a breaking change from previous versions of the CLI and/or Toolkit." "__label__bug Don't create PDB if there's an existing user defined PDB with intersecting labels Currently the pdb-controller removes the automatic PDBs if it finds another user defined PDB with the exact same labels. There are cases where you want to define a PDB with slightly different labels e.g. if you have a statefulset where one of the pods has a `master` label and you want to ensure there's always one master available. To fix this, the controller should check for intersecting labels instead of looking for exact matches." "__label__bug NA Triggers Errors in checkMAF function When the MAF is NA, an error triggers--something is wrong with the logic. " __label__enhancement Point system of the game. The game is currently unclear on how you generate points. __label__bug Download or Menu The Download our Menu section should be removed from the website. __label__bug Back to login page when executing commands in Antak A user reported this problem over email. Trying to replicate the problem in my lab. "__label__bug Make fails, why GOPATH_DIR has ""../../../.."" in it? When I issue `make`, the build fails. Full log is at the end. Basically, the code tries to use path `$(GOPATH_DIR)`, which is set like below: ```Makefile GRV_DIR:=$(dir $(realpath $(lastword $(MAKEFILE_LIST)))) GOPATH_DIR:=$(GRV_DIR)../../../.. ``` This looks like something that cannot work, because `GRV_DIR` is directory where I cloned the project. Is this Github repository only to be used with `go get`? ``` # make (git)-[master●] go get -d ./... The GRV_DIR is: /Users/sgniazdowski/.zplugin/plugins/rgburke---grv/ if patch --dry-run -N -d /Users/sgniazdowski/.zplugin/plugins/rgburke---grv/../../../../src/gopkg.in/libgit2/git2go.v25 -p1 < git2go.v25.patch >/dev/null; then \ patch -d /Users/sgniazdowski/.zplugin/plugins/rgburke---grv/../../../../src/gopkg.in/libgit2/git2go.v25 -p1 < git2go.v25.patch; \ fi patch: **** Can't change to directory /Users/sgniazdowski/.zplugin/plugins/rgburke---grv/../../../../src/gopkg.in/libgit2/git2go.v25 : No such file or directory ``` There is my debug-echo ""The GRV_DIR is ..."". " __label__bug Altitude always = 0.0 in evaluation logs Altitude in evaluation logs are always showing up as 0.0 instead of actual altitudes. Not a big deal for ground-based measurements but will be a problem when doing airborne measurements. __label__enhancement provide a dialog to save patch at custom location. "__label__bug Array spread followed by template literal results in incomplete concatenation Input ```js [...f(b), ""n""]; [...f(b), 'n']; [...f(b), `n`]; ``` [Result](https://buble.surge.sh/#%5B...f(b)%2C%20%22n%22%5D%3B%0A%5B...f(b)%2C%20'n'%5D%3B%0A%5B...f(b)%2C%20%60n%60%5D%3B): ```js f(b).concat( [""n""]); f(b).concat( ['n']); f(b).concat( [""n""); ``` Previously used 0.15 with no issues. " "__label__bug Upload component 'accept' properties bug ### Overview of the problem **Buefy** version: [0.6.3] **Vuejs** version: [2.5.13] **OS/Browser**: MacOS / Chrome 64 ### Description `accept` properties of Upload component works well when putting `image/*`, or `image/png` but there is an error when putting multiple mime types `image/png,image/jpeg` > [Vue warn]: Error in event handler for ""input"": ""TypeError: Cannot read property 'type' of undefined"" > > found in > > ---> <BUpload> ### Steps to reproduce * Add Upload component * Add `accept` properties with multiples mime types ### Expected behavior Filtering in file selection ### Actual behavior Error when selecting a file " __label__bug Fix R CMD CHECK and roxgen issues Running R CMD CHECK and `devtools::document()` have been broken for a long time because I haven't had the time to fix the issues. But it's super confusing for others when there are issues because they can't see if their changes are problematic if there is already a slew of problems. Fix issues until these operations no longer yield errors/warnings. __label__enhancement Better ASSERT_IF Macros Create better versions of the ASSERT_IF macro. Things like: - ASSERT_IF_NE - ASSERT_IF_EQ - ASSERT_IF_LT - ASSERT_IF_GT - ASSERT_IF_LTE - ASSERT_IF_GTE We can then use these macros and have them expand for better logging. "__label__enhancement Compose ""Full name"" from ""First name"" and ""Last name"" ### Steps to reproduce 1. use LDAP authentication 2. Administration -> Users shows correctly firstname and lastname ![image](https://user-images.githubusercontent.com/13366239/35804286-69bebd7c-0a77-11e8-998a-2b0e8c8d0fec.png) ### Actual behaviour - in profile, full name contains only firstname - in git commits, only firstname and email is used - in page header, only firstname is present ### Expected behaviour - concatenate firstname and lastname for fullname (in all cases) ### Server configuration * Weblate 2.17.1 * Python 2.7.13 * Django 1.11.7 * six 1.10.0 * social-auth-core 1.4.0 * social-auth-app-django 1.2.0 * django-appconf 1.0.2 * Translate Toolkit 2.2.5 * Whoosh 2.7.4 * defusedxml 0.5.0 * Git 2.11.0 * Pillow (PIL) 1.1.7 * dateutil 2.5.3 * lxml 3.7.1 * django-crispy-forms 1.6.1 * compressor 2.2 * djangorestframework 3.7.3 * pytz 2017.3 * pyuca N/A * pyLibravatar N/A * PyYAML 3.12 * tesserocr 2.2.2 * Mercurial 4.0 * git-svn 2.11.0 * Database backends: django.db.backends.postgresql_psycopg2 " "__label__question How to fix ping bar. Hello, I have this https://gyazo.com/e019acd32191e87d2c0523d1675bf24f but is there an option to fix the count thingy or not?" "__label__bug Landscape Navigation Bar Too Small on iPad ### Current Behavior - When an iPad is turned to landscape, the nav bar becomes shorter (due to #2669). This makes the status bar items (such as the time) touch and overlap with the navigation bar items (like the title). ### Expected Behavior - When an iOS device has a size class of Vertical: Compact, the nav bar should be shortened, because the OS hides the status bar automatically. With a size class of Vertical: Regular (such as on an iPad in landscape), the nav bar should be full height to accommodate the status bar. The issue is in this file: https://github.com/react-community/react-navigation/blob/master/src/views/Header/Header.js ### Your Environment | software | version | ---------------- | ------- | react-navigation | 1.0.0-beta.15 | react-native | 0.48.4 | node | 7.7.1 | yarn | 1.1.0 " "__label__enhancement Problems with plotting in versions before R2016b The read_out_to_table function uses a field that appears to not exist on the Linux version of the 'dir' function in Matlab. Specifically, if a = dir(output_directory), then a.folder does not exist. Need to workaround this issue somehow." "__label__bug Formatting of conditional types **TypeScript Version:** 2.7.0-dev.20180206 **Expected behavior:** ```ts type Diff<T, U> = T extends U ? never : T; ``` **Actual behavior:** ```ts type Diff<T, U> = T extends U?never: T; ``` **Related Issues:** " "__label__bug Solve ""the build problem"" with import references This is a guess at what it'll take... - create a metadata directory - `polymer analyze | cat metadata/analysis.json` - `bower list --p | cat metadata/dependencies.json` - command to rebuild these for all current app repos as well as build/build (which then needs top copy into the global in elmsln) - make a flag for boilerplate / lrndev to make `bower_components` a symlink into a global libraries area within elmsln which asks you where it should go in elmsln based on distribution and then module name and puts it in the right place - bower install will then resolve correctly - Now, we need to modify webcomponents module so that when it does an import, it looks for `metadata/dependencies.json`. If it's there, it will load the file into memory and preg_replace_all `<import>` for the names of anything that's in the dependencies files previously loaded. - At this point it should take the files that remain, and load them, and do the same process as above. Then add all the files that SHOULD BE ADDED to the document to reference these processed import files. - Cache this operation cause it'll be a pretty intense rebuild - Be happy we fixed this Background things Issue: To improve performance, we bundle our common set of elements (app, paper, iron, polymer, lrn, lrndesign, lrnsys, and a few other common ones) and their dependencies. What happens though is then you want to import a lrnapp into an application. This app was built in a silo so it has common imports like polymer.html and iron-icons.html. The dedup'ing process doesn't happen though when you push this up into our codebase because it can't figure out that polymer.html actually lives in the build file and so your element breaks until you delete references (and references of refernences and... yea...). Possible solution: We standardize our import routine so that all of our elements only have 1 import (huh?). I just did a prototype of this in https://github.com/LRNWebComponents/magazine-cover/blob/master/magazine-cover.html Instead of our normal references, we make 2 elements: `imports.html` and `build-imports.html` the top of our element when working in a vaccume looks like `<link rel=""import"" href=""imports.html"">` All imports (polymer.html included) live in the imports.html file. As there's nothing saying what lives in an import (and it can just import imports) this immediately simplifies the look of our element. Then, we could use tooling / our build process (which lrndev already wraps on polymer build) and do a preg replace against all files, looking for `<link rel=""import"" href=""imports.html"">` and replacing it with `<link rel=""import"" href=""build-imports.html"">`. This process would happen when we want to move the element into our application. So normal build routine for it if it's part of our global set of elements. Tooling processed adding if its a one-off / non-common element. Problems with this: It won't solve if we have vaadin-coolstuff and vaadin-coolstuff references a bunch of other stuff we still don't support. This will solve the bulk of simple issues associated with things in the build file duplicating and then not importing. Considerations: If we had some kind of manifest of what elements were in our build file, we could target those in the downstream imports and remove them. It's not pretty, but it would make it more manageable. The tooling process then would be a gulp task or job to run after updating an element which would ensure the element is correctly inserted into larger Apps in the location needed while also making sure depdencies are cleaned up. We also could make our own polymer.json modifications to add things like ""where does this live in the app"" which would then on build of that element, put it in the right place (defined in that polymer.json), and then once placing it there run the import clean up to ensure it's removed. Process this allows: Build elements as you normally would w/ a slight modification to how imports are resolved. Make tooling easier to write against so that we could more easily remove things that shouldn't be there. Work on the element in a vaccume, run the app-include.sh script and have it get placed in the right place in your app (in elmsln's case a module directory which then can be synced in for local testing). This disconnects the development of apps so that they wouldn't have to happen inside the elmsln application structure but would be placed in / synced after the fact. @heyMP Thoughts? issues with this?" "__label__enhancement Support build from context tar.gz file For the OpenShift build proxy support I made a few changes to imagebuilder to support a getting build context from a tar.gz file instead of a directory (to preserve exact permissions). I'd like buildah to support a source tar.gz file (either via `-` as the build context like Docker or as a direct path to the file), and then leverage the latest changes in imagebuilder in https://github.com/openshift/imagebuilder/pull/53 to avoid having to double unpack the context for ADD / COPY. That'll open the door for a prototype of buildah being invoked from that path." "__label__bug [modules][network] UnboundLocalError: local variable 'o_hostname' referenced before assignment ### Description of Issue/Question ### Setup launched from state.orchestrate : ``` set_hostname: salt.function: - tgt: {{ data['id'] }} - name: network.mod_hostname - arg: - {{ data['id'] }} ``` ### Steps to Reproduce Issue ``` The minion function caused an exception: Traceback (most recent call last): File \""/usr/lib/python2.7/dist-packages/salt/minion.py\"", line 1470, in _thread_return return_data = executor.execute() File \""/usr/lib/python2.7/dist-packages/salt/executors/direct_call.py\"", line 28, in execute return self.func(*self.args, **self.kwargs) File \""/usr/lib/python2.7/dist-packages/salt/modules/network.py\"", line 1307, in mod_hostname host[host.index(o_hostname)] = hostname UnboundLocalError: local variable 'o_hostname' referenced before assignment ``` ### Versions Report ``` # salt host test.versions_report host: Salt Version: Salt: 2017.7.2 Dependency Versions: cffi: Not Installed cherrypy: Not Installed dateutil: 2.2 docker-py: Not Installed gitdb: Not Installed gitpython: Not Installed ioflo: Not Installed Jinja2: 2.9.4 libgit2: Not Installed libnacl: Not Installed M2Crypto: Not Installed Mako: Not Installed msgpack-pure: Not Installed msgpack-python: 0.4.2 mysql-python: 1.2.3 pycparser: Not Installed pycrypto: 2.6.1 pycryptodome: Not Installed pygit2: Not Installed Python: 2.7.9 (default, Jun 29 2016, 13:08:31) python-gnupg: Not Installed PyYAML: 3.11 PyZMQ: 14.4.0 RAET: Not Installed smmap: Not Installed timelib: Not Installed Tornado: 4.2.1 ZMQ: 4.0.5 System Versions: dist: debian 8.7 locale: UTF-8 machine: x86_64 release: 4.9.0-0.bpo.4-amd64 system: Linux version: debian 8.7 " "__label__bug Low fps I observed large framerate drops in all navigation display modes, after switch off TCAS via property browser, fps rise from 10-15 back to 25-30 as on older version. This problem is on A33x too. Path to traffic ON/OFF : /instrumentation/efis/inputs/tfc /instrumentation/efis[1]/inputs/tfc - when 1, traffic ON, when 0, traffic off My conclusion : somewhere in the traffic search algorithm is something time very consumpting. " "__label__bug Can't resolve 'javascript-library-glpi' <!-- File a GitHub issue only for bugs or feature requests related to the code **in this repository**. For other topics you can get more information in the README file. --> ### Observed Results: When i try to run a fresh install of the dashboard, i get a error that javascript-library-glpi cannot be resolved. ``` ./src/AdminDashboard/HeaderAdminDashboard.js Module not found: Can't resolve 'javascript-library-glpi' in '/code/web-mdm-dashboard/src/AdminDashboard' ``` <!-- This could be a description, error output, steps to reproduce, a feature missed, etc. --> ### Expected behavior: It shouldn't have the error. <!-- What did you expect to happen? --> " __label__enhancement Virtual Strings - Implement PrepData() to setup data in correct output order This only applies to the RPIWS281X Channel Output since that is the only one using Virtual Strings so far. "__label__bug fix Travis MacOS builds - Homebrew issue I fixed this in PRK a while back. When somebody wants Mac builds to succeed, look at https://github.com/ParRes/Kernels/blob/master/travis/install-deps.sh#L82 and apply it in MADNESS. ``` ==> Downloading https://homebrew.bintray.com/bottles/gcc-7.3.0.sierra.bottle.tar.gz ==> Pouring gcc-7.3.0.sierra.bottle.tar.gz Error: The `brew link` step did not complete successfully The formula built, but is not symlinked into /usr/local Could not symlink include/c++ Target /usr/local/include/c++ already exists. You may want to remove it: rm '/usr/local/include/c++' To force the link and overwrite all conflicting files: brew link --overwrite gcc To list all files that would be deleted: brew link --overwrite --dry-run gcc Possible conflicting files are: /usr/local/include/c++ -> /usr/local/Caskroom/oclint/0.11,15.6.0/oclint-0.11/include/c++ ==> Summary 🍺 /usr/local/Cellar/gcc/7.3.0: 1,486 files, 284MB ==> Installing libxc ==> Downloading https://homebrew.bintray.com/bottles/libxc-3.0.1_1.sierra.bottle.tar.gz ==> Pouring libxc-3.0.1_1.sierra.bottle.tar.gz 🍺 /usr/local/Cellar/libxc/3.0.1_1: 28 files, 2.7MB ==> Downloading https://homebrew.bintray.com/bottles/mpich-3.2.1_1.sierra.bottle.tar.gz ==> Pouring mpich-3.2.1_1.sierra.bottle.tar.gz Warning: mpich dependency gcc was built with a different C++ standard library (libstdc++ from clang). This may cause problems at runtime. 🍺 /usr/local/Cellar/mpich/3.2.1_1: 887 files, 14.2MB ==> Downloading https://homebrew.bintray.com/bottles/tbb-2018_U2.sierra.bottle.tar.gz ==> Pouring tbb-2018_U2.sierra.bottle.tar.gz ==> Caveats Python modules have been installed and Homebrew's site-packages is not in your Python sys.path, so you will not be able to import the modules this formula installed. If you plan to develop with these modules, please run: mkdir -p /Users/travis/Library/Python/2.7/lib/python/site-packages echo 'import site; site.addsitedir(""/usr/local/lib/python2.7/site-packages"")' >> /Users/travis/Library/Python/2.7/lib/python/site-packages/homebrew.pth ==> Summary 🍺 /usr/local/Cellar/tbb/2018_U2: 128 files, 2MB The command ""./ci/dep-$TRAVIS_OS_NAME.sh"" failed and exited with 1 during . Your build has been stopped. /Users/travis/.travis/job_stages: line 166: shell_session_update: command not found ```" "__label__enhancement Refactor code to organize ""routes"" as entry point add new feature in Lodex is easy when we have a entrypoint like : - formats - transformers - exporters - loaders - reducers A route is a special view of the dataset : - table view - over view - analytics view - etc. It would be coherent and practical to organize routes as all other entry points" __label__bug Xtend Batch Compiler Main waits for ThreadExecutor Xtend Batch Compiler Main waits for the ThreadExecutor created by AnnotationProcessor I propose to exit the main with {{System.exit(0)}} or to offer a second main that does so. Or to explicitely shut the executor down (question would be how to access it) "__label__bug Use standard reference designators According to standard IEEE 315-1975, these components should use the reference designator `XA?`, where X means ""socket"", A means sub-assembly and ? is a placeholder for the part's unique number within the schematic." __label__enhancement Add AccessTokenHelper "__label__bug untoggling everything displays no chart Tried to add a placeholder in the event that the user untoggled all the chart options, but I struggled with it because of the loading status limitations. Should look at adding loading status on metrics stores first then putting in a placeholder in that area." __label__enhancement Action should just be a struct The Action type is overkill. It'd be more elegant if it were a simple struct defined in `Control.h`. The Array of Actions could be managed using `Value` from Objectively. "__label__question Licensing I see two licensing options: * [CRAPL](matt.might.net/articles/crapl/) * [APL2](https://www.apache.org/licenses/LICENSE-2.0) I'd personally prefer the CRAPL, because it is meant for academic software and I like the idea behind it a lot. I also licensed MUBench under it. However, if you guys prefer something more solid, I'd be finde with the APL2 as well." __label__bug [2.1] Duplication of keywords Actual for: `arrogant timeline` "__label__enhancement Support for virtual hosting. Inspired by a chat with @meshy about how to run multiple Django sites using a single channels deployment. A logical thing for smaller operators who run multiple sites to want to do is to deploy multiple Django sites but to share as much as is possible to do to reduce the number of moving pieces in the system. Clearly, each worker needs to be different (as they literally run different Python code!), so we cannot reduce the redundancy there, but it would be nice to be able to reduce redundancy at the channel and server layer. Exposing multiple virtual channel layers on top of a single logical channel infrastructure is something that I'm not well-suited to opine about (prefix all the channel names, maybe? I dunno), but doing this at the server layer is super obvious: virtual hosting! Let's talk about this here. In essence, it would be nice to be able to deploy daphne something like this: `daphne -b 0.0.0.0 -p 8001 google.com:django_project1.asgi:channel_layer1 twistedmatrix.com:django_project2.asgi:channel_layer2`: essentially, to be able to tell Daphne ""please serve multiple sites from the same IP/port combination in the same process"". There are some questions about the Twisted support for this in the mainline or whether you'd need custom or third-party code (certainly for TLS-based sites you'd need txsni _for sure_), but it seems like a worthy extension. This would allow you to achieve efficient use of machine resources and reduce redundancy. Thoughts? " "__label__enhancement Build Controller Build a controller to control the events. #### Requirements - [x] #1 , #2 , #3 , #4 need to be solved #### Actions - [x] Create new Event - [x] Read new Event - [x] Update existing Event - [x] Delete Event - [x] Import new Events" "__label__enhancement Detection of Gluu-Server installation and OS I have two VMs; one has Gluu CE installed and another one has openLDAP for Gluu Server [ Gluu Server installation with remote openldap ]. Tried to add that first VM ( which has CE installed ) in cluster-mgr but it couldn't detect installed CE and OS. When I hit 'Install Gluu Server' button; cluster-mgr uninstalled my CE and installed a new CE there. I am exactly not sure how cluster-mgr detect an 'installed CE version' but most probably that need some improvement when we have some CE installed whose bits ( oxAuth,oxTrust, LDAP etc. ) are scattered among multiple VMs. " "__label__bug [TW-379] creates files in /tmp insecurely _Jakub Wilk on 2013-04-10T19:22:41Z says:_ The test suite creates files in /tmp insecurely. It can be used by a local attacker to trick a user who runs the test suite to overwrite arbitrary files. *Proof of concept*: As the attacker: * <pre>$ ln -sf /home/victim/pwned /tmp/file.t.txt</pre> As the victim: * Run the test suite * <pre>$ ls -l ~/pwned -rw-r--r-- 1 victim users 15 Apr 10 20:54 /home/victim/pwned </pre> This might not work on recent Linux kernels thanks to /proc/sys/fs/protected_symlinks; however, other systems are almost certainly vulnerable. The attached is a patch I'll use for Debian, unless you folks figure out something better. :) With the patch, a local directory is used, instead of world-writable /tmp." __label__bug Directory Paths Check "__label__bug Exception accepting event for a personal calendar ``` ERROR- 07-02-2018T17:05:55,818 - io.milton.cloud.util.SessionManagerUtils - Exception in class com.fuselms.apps.leadman.LeadTaskPage$$Lambda$1423/2010037832 java.lang.ClassCastException: io.milton.vfs.db.Profile_$$_jvst6d0_1a cannot be cast to io.milton.vfs.db.Organisation at io.milton.cloud.server.apps.calendar.CalendarManager.accept(CalendarManager.java:379) at com.fuselms.apps.funnels.CreateCalendarEventGoalAction.onEnter(CreateCalendarEventGoalAction.java:276) at com.fuselms.apps.funnels.FunnelManager.nodeTransition(FunnelManager.java:900) at com.fuselms.apps.funnels.FunnelManager.nodeTransition(FunnelManager.java:790) at com.fuselms.apps.funnels.FunnelManager.checkFunnel(FunnelManager.java:526) at com.fuselms.apps.funnels.FunnelManager.lambda$null$2(FunnelManager.java:416) at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1380) at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580) at com.fuselms.apps.funnels.FunnelManager.lambda$onFunnelEvent$3(FunnelManager.java:409) at io.milton.cloud.util.SessionManagerUtils.executeInTransaction(SessionManagerUtils.java:261) at com.fuselms.apps.funnels.FunnelManager.onFunnelEvent(FunnelManager.java:407) at com.fuselms.apps.leadman.LeadTaskPage.lambda$processForm$0(LeadTaskPage.java:112) at io.milton.cloud.util.SessionManagerUtils.processFormInTransaction(SessionManagerUtils.java:141) at com.fuselms.apps.leadman.LeadTaskPage.processForm(LeadTaskPage.java:81) at io.milton.http.http11.PostHandler.processExistingResource(PostHandler.java:85) at io.milton.http.ResourceHandlerHelper.processResource(ResourceHandlerHelper.java:196) at io.milton.http.http11.PostHandler.processResource(PostHandler.java:68) at io.milton.http.ResourceHandlerHelper.process(ResourceHandlerHelper.java:127) at io.milton.http.http11.PostHandler.process(PostHandler.java:62) at io.milton.http.StandardFilter.process(StandardFilter.java:50) at io.milton.http.FilterChain.process(FilterChain.java:46) at co.kademi.server.subscription.KademiSubscriptionFilter.process(KademiSubscriptionFilter.java:45) ```" __label__enhancement Favicons "__label__bug [TW-1083] You cannot remove the due date from a recurring task. _John Florian on 2010-02-05T11:45:36Z says:_ Error would make sense for a recurring task, but it appears for non-recurring tasks (as of 1.9.0b1): <pre> $ task 132 info Name Value ID 132 Description Create mail server. Status Pending Project admin Priority M Due 1/15/2010 UUID c7a548ab-7605-b615-c0cc-d57843a69bf6 Entered 9/20/2009 (4 mths) $ task 132 due: You cannot remove the due date from a recurring task. </pre>" "__label__enhancement Feature request: Reverse scrolling for historical events ## Description I would like to be able to reverse the scrolling, this would enable the use of an overview of historical dates and events. ## Expected Behavior When scrolling up, it would go back to previous weeks/months. When scroll down to current date it would either stop or continue forward as today." "__label__enhancement allow to skip some routines For instance, if the wavelength solution didn't quite work, it isn't necessary to do all the previous steps. It would be good if the code just started from the wavelength calibration using the (presumably) updated configuration." __label__enhancement Switch manually to any algorithm during mining It would be nice to have a switch tool to any available algorithm per device during mining process. __label__enhancement All: delete zoho account "__label__enhancement Do not close the Essence Collect popover after each ""Collect"" interaction This is particularly annoying when you have multiple items to collect as you have to reopen the essence popover and click ""Collect"" for each item. On another note, @kenshyx can multiple ""collect essence"" transactions be batched in a single transaction? (i.e. a ""Collect All"" button) <img width=""386"" alt=""screen shot 2018-01-07 at 7 15 22 pm"" src=""https://user-images.githubusercontent.com/6831213/34651885-6809d86c-f3df-11e7-8ab2-996f7569f44f.png""> " "__label__enhancement Geocoding: directly set cursor to input field When the Geocoding search field is clicked, the cursor should end up in the new search field, ready to type." "__label__bug Wrong argument not detected ```js const roleIds = ['id1', 'id2']; const data = { roles: { connect: { id: roleIds } }, }; return ctx.db.mutation.createMembership({ data }, info); ``` returns this error: ```sh [GraphQL error]: Message: No Node for the model Role with value id1,id2 for id found., Location: [object Object], Path: createMembership Error: No Node for the model Role with value id1,id2 for id found. at Object.checkResultAndHandleErrors (/my-app/node_modules/graphql-tools/dist/stitching/errors.js:69:36) at Object.<anonymous> (/my-app/node_modules/graphql-tools/dist/stitching/delegateToSchema.js:92:52) at step (/my-app/node_modules/graphql-tools/dist/stitching/delegateToSchema.js:40:23) at Object.next (/my-app/node_modules/graphql-tools/dist/stitching/delegateToSchema.js:21:53) at fulfilled (/my-app/node_modules/graphql-tools/dist/stitching/delegateToSchema.js:12:58) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) ``` Note > No Node for the model Role with value **id1,id2** for id found. It looks like `graphcool-binding` is converting the list of strings that was passed into the `id` argument to a single string, instead of either throwing an error or passing the list of strings onto the GraphQL API. see here for more information: https://www.graph.cool/forum/t/connect-mutation-for-many-to-many/2074?u=nilan" "__label__enhancement Conditional caching We need to be able to (for example) only cache content when a user is logged in. caches(condition=""something"") perhaps? Note: look at the wording / code we use in validations for conditions. " "__label__bug [TW-8] project name display problems _t charles yun says:_ For a variety of not-so-clever-reasons, I have two projects whose names are different numbers of periods, ""......"" and ""............"" the command: task proj:""."" properly displays the project summaries. However, the command: task project gets confused by the periods and displays successive periods on different lines. I note that this is probably my abuse of bash (xref: http://taskwarrior.org/issues/864 ) more than a task issue." "__label__bug Blank page appeared in the simulation While testing the lab, found an issue that all the simulations are redirecting to an empty page." "__label__bug imeta qu -R and -u only query on the first condition `imeta qu -R` and `-u` options only query on the first condition that is present on the command line. Example: ``` imeta qu -z tempZone -R target = 1 and study_id = 4616 ``` This query will return all resources the have metadata with a name of ""target"" and a value of ""1"". This is misleading because the `and study_id = 4616` is not part of the executed query although a user would think that this is part of the search criteria. Either this needs to work as it appears or it needs to generate an error when someone attempts to perform this query." "__label__bug Remove BuddyPress from version display Remove the "" / BuddyPress"" version from the readme and loader. It seems to be confusing the WordPress plugin repository's method of determining of the plugin has been tested with the current version." "__label__bug Array Index Is Out Of Range Hi, I'm using Unity 5.4.5 and on some meshes I get ""Array Index Is Out Of Range"" on Slicer.cs Line 123 `Triangle newTri = new Triangle(ve[i0], ve[i1], ve[i2], uv[i0], uv[i1], uv[i2]);` The meshes are simple shapes exported from blender as .obj (cube, icosphere). Curiously, the default unity cube mesh works, but not one exported straight from blender. It appears the triangles are in a different configuration that's causing some bug (I think). On the meshes that do work, when I call SliceInstantiate() the upper and lower hulls have no end caps on the cut face." __label__bug Lists in Forums Issues with styles in forums ![image](https://user-images.githubusercontent.com/4554100/35954125-1cf113e8-0cdc-11e8-97db-80a6fa12c5be.png) __label__bug FEC Timeline not working The FEC timeline doesn't seem to be working on the transition site. https://transition.fec.gov/pages/40th_anniversary/40th_anniversary.shtml "__label__bug This is an issue subject https://test-company1.kayako.com/agent/conversations/24<br>Latest Comment: George: This is causing problems for this client, please fix it.<br>" "__label__bug Header: Spielzeiten Prob Spielzeiten sind momentan unabhängig vom Tag. Es gibt die Tage: Heute, Morgen, Di, Mi. Es gibt die Zeiten: 17.45, 20.15, 22.30 Eigentlich sollten die Spielzeiten wie folgt aussehen: Heute : [17.15, 20.15, 22.30] Morgen: [20.15] ... Muss in Carousel.js ""fillHeader()"" geändert werden. " "__label__enhancement Actor ""facingRight"" state should be replaced by velocity The Actor.states.facingRight property should be removed. Instead, the direction the actor is facing can be gathered from a negative or positive horizontal velocity (or delta x). In a similar vein, jumping and falling and their related animations could be gathered by +/- delta y. This should reduce the amount of state-based flags actors deal with, and streamline the class. All Actors and children of Actor need to be refactored to match." __label__enhancement Use GetGameFrameTime() for time calculation Pending SourceMod 1.9's stable release. https://github.com/alliedmodders/sourcemod/commit/44c744b8fd4da788c02275599136ae3 Not high priority at all. But it'll solve issues with server lag affecting times and will allow me to easily implement timescaling for TAS. "__label__bug remove plot.ly credentials from config.py Right now, plot.ly credentials have been placed in config.py. It seems that plot.ly looks up the credentials automatically from ~/.plotly/.credentials file. We can move the credentials out of the git repository." "__label__enhancement Remove duplicate static field String Remove duplicate static field String from WorkflowService, already defined in WorkflowKernel" __label__bug Required headers for getHeaders() Is it a requirement for a `po` file to has some specific header? [https://github.com/raulferras/PHP-po-parser/blob/master/src/Sepia/PoParser.php#L745](https://github.com/raulferras/PHP-po-parser/blob/master/src/Sepia/PoParser.php#L745) If my `po`file contains only one header that is not valid? "__label__bug Spreadsheet server-side Save method does not export the correct value for cells with custom format ### Bug report When the Spreadsheet has custom format (""@"") for a given cell and the server-side export is implemented, the exported Excel file contains incorrect values. For example, when ""01234"" value is set in some cell - the exported excel file should be ""01234"", while currently it is ""1234"". The issue seems to originate by the **SetCells** method in partial class Workbook, where the values from the Spreadsheet are translated to the exported Excel file. Probably the SetValueAsText method should be used after the SetFormat. ### Environment * **Kendo UI version:** 201x.r.ddd * **jQuery version:** x.y * **Browser:** [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ] " "__label__bug Pb French encoding in ggplot and ggiraph plot I'm trying to make a plot using ggplot2 and ggiraph in a shiny app with data from a csv file. The csv file has been saved in UTF-8 and read as well with UTF-8 encoding. In the shiny app, I have no problem of accent when I visualize a text from the input data (with a Textoutput) but in the plot, I don't arrive to manage the accents, which are replaced with other characters. ![graph_test](https://cloud.githubusercontent.com/assets/20970251/17588774/69a5f226-5fd1-11e6-9fe4-6646891ca3a8.png) Here, information about my session : > sessionInfo() > R version 3.2.2 (2015-08-14) > Platform: x86_64-w64-mingw32/x64 (64-bit) > Running under: Windows 8 x64 (build 9200) locale: [1] LC_COLLATE=French_France.1252 LC_CTYPE=French_France.1252 LC_MONETARY=French_France.1252 [4] LC_NUMERIC=C LC_TIME=French_France.1252 Thanks in advance for your help !! " "__label__question Specify fixed distributional parameters in brms? I apologize if this should be obvious, but I have reviewed the documentation for _brmsfamily_ and not found an answer for this: Is there a way in `brms` to ""force"" a specified outcome variable distribution to coalesce around certain distributional parameters, e.g., to use a student_t distribution with 5 degrees of freedom rather than 1, or a particular shape parameter of the generalized extreme value (only reverse Weibull), instead of just allowing the model to estimate those parameters and/or use defaults for them when sampling?" "__label__bug [TW-1703] When on-modify hook is installed, some messages print UUIDs instead of IDs _Robin Green on 2015-09-20T12:15:43Z says:_ This happens regardless of whether the hook makes changes or not. Example output: {code} $ task 68 annotate https://github.com/nidi3/raml-tester/issues/52 Annotating task 2173d9ba-6ad3-4c5b-8651-c490aed093bf 'Fix ! include ignored in resource type parameters'. Annotated 1 task. Project 'ST' is 33% complete (2 of 3 tasks remaining). {code} The task in this example is not done." __label__bug Memory leak when closing Implement a cancellation token to allow benchmarking task to finish correctly by performing a clean-up. Current set-up closes form instantly which is unacceptable. "__label__bug panic: runtime error: index out of range in maindata.readHuffman Hello. I found a index out of range bug in go-mp3. Please confirm. Thanks. reproduce code: ``` package mp3 import ( ""bytes"" ""testing"" ) type bytesReadCloser struct { *bytes.Reader } func (b *bytesReadCloser) Close() error { return nil } func TestFuzzingIssue3(t *testing.T) { inputs := []string{ ""\xff\xfa%00000000000000000"" + ""000000000000s0000000"" + ""00000000000000000000"" + ""00000000000000000000"" + ""00000000000000000000"" + ""00000000000000000000"", } for _, input := range inputs { b := &bytesReadCloser{bytes.NewReader([]byte(input))} _, _ = NewDecoder(b) } } ``` ``` panic: runtime error: index out of range [recovered] panic: runtime error: index out of range goroutine 5 [running]: panic(0x500300, 0xc42000a120) /usr/lib/go-1.7/src/runtime/panic.go:500 +0x1a1 testing.tRunner.func1(0xc4200683c0) /usr/lib/go-1.7/src/testing/testing.go:579 +0x25d panic(0x500300, 0xc42000a120) /usr/lib/go-1.7/src/runtime/panic.go:458 +0x243 github.com/hajimehoshi/go-mp3/internal/maindata.readHuffman(0xc420012450, 0xfffa2530, 0xc420080000, 0xc420082000, 0xdbd, 0x1, 0x1, 0x0, 0x0) /home/karas/go/src/github.com/hajimehoshi/go-mp3/internal/maindata/huffman.go:76 +0x27a github.com/hajimehoshi/go-mp3/internal/maindata.Read(0x7f8624321230, 0xc420012420, 0x0, 0x7f86fffa2530, 0xc420080000, 0x0, 0x0, 0xc42000a590, 0x8) /home/karas/go/src/github.com/hajimehoshi/go-mp3/internal/maindata/maindata.go:152 +0x417 github.com/hajimehoshi/go-mp3/internal/frame.Read(0x59c420, 0xc420012420, 0x0, 0x0, 0x3, 0x3, 0x3, 0x8) /home/karas/go/src/github.com/hajimehoshi/go-mp3/internal/frame/frame.go:97 +0x2f7 github.com/hajimehoshi/go-mp3.(*Decoder).readFrame(0xc42004c2a0, 0x0, 0x0) /home/karas/go/src/github.com/hajimehoshi/go-mp3/decode.go:41 +0x59 github.com/hajimehoshi/go-mp3.NewDecoder(0x59cb20, 0xc420026028, 0x78, 0xc42007e000, 0x78) /home/karas/go/src/github.com/hajimehoshi/go-mp3/decode.go:207 +0x102 github.com/hajimehoshi/go-mp3.TestFuzzingIssue3(0xc4200683c0) /home/karas/go/src/github.com/hajimehoshi/go-mp3/fuzzing_test.go:27 +0x11c testing.tRunner(0xc4200683c0, 0x52f068) /usr/lib/go-1.7/src/testing/testing.go:610 +0x81 created by testing.(*T).Run /usr/lib/go-1.7/src/testing/testing.go:646 +0x2ec ``` " "__label__bug [TW-890] Calendar error _Jostein Berntsen on 2010-11-10T14:23:57Z says:_ I did not find the Norwegian holiday file in the new 1.9.3: <pre> ls /usr/local/share/doc/task/rc/ dark-16.theme dark-blue-256.theme dark-red-256.theme dark-yellow-green.theme holidays-DE.rc holidays-FR.rc holidays-SE.rc holidays-US.rc light-256.theme dark-256.theme dark-green-256.theme dark-violets-256.theme holidays-CA.rc holidays-ES.rc holidays-NL.rc holidays-UK.rc light-16.theme </pre> So I tried the Swedish and the US ones by including them in taskrc. I then got these errors: Swedish: <pre> ~> task cal ""20101106"" is not a valid date (DEFAULT). </pre> US: <pre> ~> task calendar ""20101106"" is not a valid date (DEFAULT). </pre>" "__label__bug Error : author module does not define admin or error : No module named admin, " "__label__question Ntp.cpp:37: error: 'setSyncProvider' was not declared in this scope (no idea why) I don't understand why I get this error. I looked in the library and I did find the function. I shut down Arduino and then deleted the Time library. I downloaded the latest. I started Arduino again, I installed the library again with Add Zip file. I then compiled and got the following error again. I am using Arduino 1.85 and ESP8266 2.4.0 ``` C:\Users\Rudy\AppData\Local\Temp\arduino_build_323143\sketch\Ntp.cpp: In constructor 'Ntp::Ntp(uint8_t, int8_t, time_t)': Ntp.cpp:37: error: 'setSyncProvider' was not declared in this scope setSyncProvider(getNtpTime); ^ ``` I loaded a Time esp8266 sample sketch that has the above function call and it worked just fine. At this point I don't know what to do. Well, not quite true. I could install everything again from scratch on a clean computer and try it again. I could use my work machine but once the end of the day comes I want to get out of there as soon as possible." "__label__enhancement Clear ""Permission denied"" error when navigating to another tab On the favadev demo, I try to edit and save a transaction and a red ""Permission denied"" error pops up on the top right. I then navigate to another tab and the red error is still there. Maybe it should be cleared when you navigate away? (Feel free to close if you disagree. I'm just sharing some random ideas...)" __label__bug Comments starting with '#' are deprecated in /usr/local/etc/php/conf.d/zz-php.ini ``` docker@cli:/var/www/docroot$ php -v PHP Deprecated: Comments starting with '#' are deprecated in /usr/local/etc/php/conf.d/zz-php.ini on line 11 in Unknown on line 0 PHP 5.6.33 (cli) (built: Jan 9 2018 02:59:27) ... ``` This is a regression introduced in d72dc5b79fb14152413270085e3f2008de1e53ba "__label__bug Update from 9.1.6 to 9.1.7 failing with postgresql DB ### Steps to reproduce 1. Have 9.1.6 running with postgresql DB 2. install 9.1.7 3. Start upgrade script (sudo -u www-data php occ upgrade) ### Expected behaviour Upgrade process should start and finish without error ### Actual behaviour Error at schema update check: ``` sudo -u www-data php occ upgrade ownCloud or one of the apps require upgrade - only a limited number of commands are available You may use your browser or the occ upgrade command to do the upgrade Set log level to debug Checking whether the database schema can be updated (this can take a long time depending on the database size) oc_appconfig 1/24 [=>--------------------------] 4%OC\DB\MigrationException: An exception occurred while executing 'SELECT min_value, increment_by FROM ""oc_activity_activity_id_seq""': SQLSTATE[42703]: Undefined column: 7 ERROR: column ""min_value"" does not exist LINE 1: SELECT min_value, increment_by FROM ""oc_activity_activity_id... ^ Update failed Maintenance mode is kept active Reset log level ``` ### Server configuration **Operating system**: Debian GNU/Linux 8 **Web server:** nginx **Database:** PostgreSQL 10.1 **PHP version:** 5.6.30-0+deb8u1 **ownCloud version:** (see ownCloud admin page) 9.1.7 **Updated from an older ownCloud or fresh install:** updated Version before failed upgrade, 9.1.6 **Where did you install ownCloud from:** owncloud.org tarball **Signing status (ownCloud 9.0 and above):** Integrity checker has been disabled. Integrity cannot be verified. **The content of config/config.php:** ``` ""system"": { ""instanceid"": ""oc2b96fb5632"", ""passwordsalt"": ""***REMOVED SENSITIVE VALUE***"", ""trusted_domains"": [ ""owncloud.geiger-online.ch"", ""oc.geiger-online.ch"" ], ""datadirectory"": ""\/var\/www\/owncloud_data"", ""dbtype"": ""pgsql"", ""version"": ""9.1.6.2"", ""dbname"": ""owncloud"", ""dbhost"": ""192.168.122.1"", ""dbtableprefix"": ""oc_"", ""log_type"": ""syslog"", ""log_query"": false, ""loglevel"": 0, ""logfile"": """", ""dbuser"": ""***REMOVED SENSITIVE VALUE***"", ""dbpassword"": ""***REMOVED SENSITIVE VALUE***"", ""installed"": true, ""forcessl"": true, ""mail_smtpmode"": ""sendmail"", ""mail_from_address"": ""owncloud"", ""mail_domain"": ""geiger-online.ch"", ""theme"": """", ""maintenance"": false, ""secret"": ""***REMOVED SENSITIVE VALUE***"", ""forceSSLforSubdomains"": true, ""trashbin_retention_obligation"": ""auto"", ""filesystem_check_changes"": 0, ""appstore.experimental.enabled"": false } } ``` **List of activated apps:** ``` Enabled: - activity: 2.3.2 - bookmarks: 0.9.0 - calendar: 1.4.1 - comments: 0.3.0 - configreport: 0.1.1 - contacts: 1.5.1 - dav: 0.2.7 - documents: 0.13.1 - federatedfilesharing: 0.3.0 - federation: 0.1.0 - files: 1.5.1 - files_pdfviewer: 0.8.1 - files_sharing: 0.10.0 - files_texteditor: 2.1 - files_trashbin: 0.9.0 - files_versions: 1.3.0 - files_videoplayer: 0.9.8 - firstrunwizard: 1.1 - gallery: 15.0.0 - mail: 0.6.0 - notifications: 0.3.0 - provisioning_api: 0.5.0 - systemtags: 0.3.0 - tasks: 0.9.4 - templateeditor: 0.1 - updatenotification: 0.2.1 Disabled: - encryption - external - files_antivirus - files_external - user_external - user_ldap ``` **Are you using external storage, if yes which one:** local/smb/sftp/... no **Are you using encryption:** yes/no no **Are you using an external user-backend, if yes which one:** LDAP/ActiveDirectory/Webdav/... no ### Logs #### Web server error log #### ownCloud log (data/owncloud.log) ``` Dec 30 21:24:21 web ownCloud[19299]: {core} starting upgrade from 9.1.6.2 to 9.1.7.2 Dec 30 21:24:21 web ownCloud[19299]: {PHP} file_put_contents(/var/www/owncloud_data/.htaccess): failed to open stream: Permission denied at /var/www/owncloud/lib/private/Setup.php#502 Dec 30 21:24:22 web ownCloud[19299]: {core} Simulated database structure update failed (exception 'OC\DB\MigrationException' with message 'An exception occurred while executing 'SELECT min_value, increment_by FR OM ""oc_activity_activity_id_seq""':#012#012SQLSTATE[42703]: Undefined column: 7 ERROR: column ""min_value"" does not exist#012LINE 1: SELECT min_value, increment_by FROM ""oc_activity_activity_id...#012 ^' in /var/www/owncloud/lib/private/DB/Migrator.php:169#012Stack trace:#012#0 /var/www/owncloud/lib/private/DB/Migrator.php(127): OC\DB\Migrator->checkTableMigrate(Object(Doctrine\DBAL\Schema\Table))#012#1 /v ar/www/owncloud/lib/private/DB/MDB2SchemaManager.php(130): OC\DB\Migrator->checkMigrate(Object(Doctrine\DBAL\Schema\Schema))#012#2 /var/www/owncloud/lib/private/legacy/db.php(202): OC\DB\MDB2SchemaManager->simul ateUpdateDbFromStructure('/var/www/ownclo...')#012#3 /var/www/owncloud/lib/private/Updater.php(288): OC_DB::simulateUpdateDbFromStructure('/var/www/ownclo...')#012#4 /var/www/owncloud/lib/private/Updater.php(232 ): OC\Updater->checkCoreUpgrade()#012#5 /var/www/owncloud/lib/private/Updater.php(150): OC\Updater->doUpgrade('9.1.7.2', '9.1.6.2')#012#6 /var/www/owncloud/core/Command/Upgrade.php(290): OC\Updater->upgrade()#01 2#7 /var/www/owncloud/3rdparty/symfony/console/Command/Command.php(259): OC\Core\Command\Upgrade->execute(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput) )#012#8 /var/www/owncloud/3rdparty/symfony/console/Application.php(844): Symfony\Component\Console\Command\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ ConsoleOutput))#012#9 /var/www/owncloud/3rdparty/symfony/console/Application.php(192): Symfony\Component\Console\Application->doRunCommand(Object(OC\Core\Command\Upgrade), Object(Symfony\Component\Console\Input\ ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))#012#10 /var/www/owncloud/3rdparty/symfony/console/Application.php(123): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\C onsole\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))#012#11 /var/www/owncloud/lib/private/Console/Application.php(146): Symfony\Component\Console\Application->run(NULL, NULL)#012#12 / var/www/owncloud/console.php(102): OC\Console\Application->run()#012#13 /var/www/owncloud/occ(11): require_once('/var/www/ownclo...')#012#14 {main}) Dec 30 21:24:22 web ownCloud[19299]: {core} Exception: {""Exception"":""OC\\DB\\MigrationException"",""Message"":""An exception occurred while executing 'SELECT min_value, increment_by FROM \""oc_activity_activity_id_se q\""':\n\nSQLSTATE[42703]: Undefined column: 7 ERROR: column \""min_value\"" does not exist\nLINE 1: SELECT min_value, increment_by FROM \""oc_activity_activity_id...\n ^"",""Code"":0,""Trace"":""#0 \/var\/ www\/owncloud\/lib\/private\/DB\/Migrator.php(127): OC\\DB\\Migrator->checkTableMigrate(Object(Doctrine\\DBAL\\Schema\\Table))\n#1 \/var\/www\/owncloud\/lib\/private\/DB\/MDB2SchemaManager.php(130): OC\\DB\\Migr ator->checkMigrate(Object(Doctrine\\DBAL\\Schema\\Schema))\n#2 \/var\/www\/owncloud\/lib\/private\/legacy\/db.php(202): OC\\DB\\MDB2SchemaManager->simulateUpdateDbFromStructure('\/var\/www\/ownclo...')\n#3 \/var \/www\/owncloud\/lib\/private\/Updater.php(288): OC_DB::simulateUpdateDbFromStructure('\/var\/www\/ownclo...')\n#4 \/var\/www\/owncloud\/lib\/private\/Updater.php(232): OC\\Updater->checkCoreUpgrade()\n#5 \/var\ /www\/owncloud\/lib\/private\/Updater.php(150): OC\\Updater->doUpgrade('9.1.7.2', '9.1.6.2')\n#6 \/var\/www\/owncloud\/core\/Command\/Upgrade.php(290): OC\\Updater->upgrade()\n#7 \/var\/www\/owncloud\/3rdparty\/ symfony\/console\/Command\/Command.php(259): OC\\Core\\Command\\Upgrade->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#8 \/var\/www\ /owncloud\/3rdparty\/symfony\/console\/Application.php(844): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ ConsoleOutput))\n#9 \/var\/www\/owncloud\/3rdparty\/symfony\/console\/Application.php(192): Symfony\\Component\\Console\\Application->doRunCommand(Object(OC\\Core\\Command\\Upgrade), Object(Symfony\\Component\\C onsole\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#10 \/var\/www\/owncloud\/3rdparty\/symfony\/console\/Application.php(123): Symfony\\Component\\Console\\Application->doRun (Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#11 \/var\/www\/owncloud\/lib\/private\/Console\/Application.php(146): Symfony\\Component\\Con sole\\Application->run(NULL, NULL)\n#12 \/var\/www\/owncloud\/console.php(102): OC\\Console\\Application->run()\n#13 \/var\/www\/owncloud\/occ(11): require_once('\/var\/www\/ownclo...')\n#14 {main}"",""File"":""\/va r\/www\/owncloud\/lib\/private\/DB\/Migrator.php"",""Line"":169} ``` " "__label__bug Fix blog links see package blog. these worked on local host, so may have something to do with relref shortcode?" "__label__enhancement Formatação de citações no HTML A formatação produzida para citações em HTML está muito feia. Não dá para melhorar, fazendo avançar a margen esquerda, como é costume? ![image](https://user-images.githubusercontent.com/7694624/36034504-6e6ac826-0d9b-11e8-99f8-a04493027ebc.png) " "__label__enhancement Examples on Standard Datasets It would be nice if we had examples of how to run xnmt on standard datasets and get great scores, the best scores! I think this could be implemented by restructuring the examples folder to have on large README.md explaining what each of the examples are, then sub-directories with a README.md explaining the various commands that need to be run to obtain the data and train the model. For models that can be run as-is from the top directory of xnmt using the example data, then it's fine to leave them as-is, although a short explanation in the top README.md might be warranted." __label__enhancement documentation-Plugin externe Links Externe Links im Navi-Bereich __label__bug Browser freezes when viewing the pole(s) Centering the globe on a pole causes the browser to freeze. The browser tab must be closed to recover. "__label__bug Blink Bug ### Expected Behaviour Use quickstep (nerfed blink) while buckled, it unbuckles you. ### Actual Behaviour It doesn't. ### Steps to reproduce the problem 1. Buckle yourself. 2. Blink. 3. Can't move unless you resist out of it. " "__label__enhancement Crear vistas para ""Actividad"" " "__label__bug Compiler incorrectly optimizes [val].join("""") Hi I believe compiler incorrectly handles following optimization: `[val].join('')` to `val + ''`. This conversion doesn't work when val has different `toString()` and `valueOf()` methods. For `join` browser uses `val.toString()` while for `+` it uses `val.valueOf()`. Example: ``` js var val = { toString: function() { return 'foo'; }, valueOf: function() { return 42; } }; function myJoin(v) { return v['join'](''); } console.log([val].join('')); console.log(myJoin([val])); ``` When compiling with simpl optimizations and running in console I get the following: ``` text 42 foo ``` Correct output is: ``` text foo foo ``` [UI service](http://closure-compiler.appspot.com/home#code%3D%252F%252F%2520%253D%253DClosureCompiler%253D%253D%250A%252F%252F%2520%2540compilation_level%2520ADVANCED_OPTIMIZATIONS%250A%252F%252F%2520%2540output_file_name%2520default.js%250A%252F%252F%2520%253D%253D%252FClosureCompiler%253D%253D%250A%250A%252F%252F%2520ADD%2520YOUR%2520CODE%2520HERE%250Avar%2520val%2520%253D%2520%257B%250A%2520%2520toString%253A%2520function%28%29%2520%257B%2520return%2520'foo'%253B%257D%252C%250A%2520%2520valueOf%253A%2520function%28%29%2520%257B%2520return%252042%253B%2520%257D%250A%257D%253B%250Aconsole.log%28%255Bval%255D.join%28%2522%2522%29%29%253B%250A%250Afunction%2520myJoin%28v%29%2520%257B%250A%2520%2520return%2520v%255B'join'%255D%28%2522%2522%29%253B%250A%257D%250Aconsole.log%28myJoin%28%255Bval%255D%29%29%253B%250A%250A) Example is hacky as I didn't find better way to prevent compiler from optimizing second `join` call. " __label__bug Update section 'Theory' in experiment 'Tchebichev Straight Line Mechanism' Update section 'Theory' in experiment 'Tchebichev Straight Line Mechanism' "__label__enhancement Improve umi plugin system ## 生命周期 * [x] 前置任务,在做所有事之前,onStart * [x] 更新全局配置,Service.js#constructor,_modifyGlobalConfig * [x] 修改路由配置,getRouteConfig.js#default,modifyRoutes * [x] 修改配置插件,modifyConfigPlugins * [x] 生成 .umi 下的文件,generateFiles * [x] modifyPageWatchers * [x] 修改路由文件,modifyRouterFile * [x] 修改入口文件 umi.js,modifyEntryFile * [x] 修改路由文件里 component 的定义,区分 development 和 production,modifyRouteComponent * [x] 修改传给 af-webpack/getConfig 的参数,modifyAFWebpackOpts * [x] 修改 webpack config,modifyWebpackConfig * [x] 修改 HTML 文件,modifyHTML * [x] 修改 HTML 的 script 部分,modifyHTMLScript * [x] build 成功后,buildSuccess dev 专用 * [x] modifyMiddlewares * [x] 路由被请求时做的事,onRouteRequest * [x] afterServer * [x] onCompileDone 注意: * 以 `_` 开始的接口为私有接口,需尽量避免使用,可能会变更 ## Plugin Example ```js export default function(api) { api.modifyWebpack(fn); api.registerCommand('command', fn); api.register('key', fn); } ``` ## 实现 1. 获取插件列表,builtInsPlugins + .umirc.js + cli 1. idToPlugin,转成 { id, apply } 格式 1. this.plugins 1. 初始化插件,`this.plugins.forEach({ id, apply }) => { apply(new PluginAPI(id, this) });` 1. register 的 key 存在 service.pluginsFn 上,然后通过 service.applyPluginSync(key) 执行,目前只支持同步 " "__label__bug Can't build project now (2 computers no changes) What kind of issue is this? - [ ] Question. This issue tracker is not the place for questions. If you want to ask how to do something, or to understand why something isn't working the way you expect it to, use our Community Forums https://community.platformio.org - [x] PlatformIO IDE. All issues related to PlatformIO IDE should be reported to appropriate repository https://github.com/platformio/platformio-atom-ide/issues - [ ] Development Platform or Board. All issues related to Development Platforms or Embedded Boards should be reported to appropriate repository. See full list with repositories and search for ""platform-xxx"" repository related to your hardware https://github.com/platformio?query=platform- - [ ] Feature Request. Start by telling us what problem you’re trying to solve. Often a solution already exists! Don’t send pull requests to implement new features without first getting our support. Sometimes we leave features out on purpose to keep the project small. - [ ] PlatformIO Core. If you’ve found a bug, please provide an information below. *You can erase any parts of this template not applicable to your Issue.* ------------------------------------------------------------------ ### Configuration **Operating system**: **PlatformIO Version** (`platformio --version`): ### Description of problem #### Steps to Reproduce 1. 2. 3. ### Actual Results ### Expected Results ### If problems with PlatformIO Build System: **The content of `platformio.ini`:** ```ini Insert here... ``` **Source file to reproduce issue:** ```cpp Insert here... ``` ### Additional info " "__label__enhancement Informix Driver for Version 4.3.3 Dear all, I just installed version 4.3.3 on Windows 10.0 platform. However there is no driver instance for INFORMIX database. any kind soul out there that can help me ? Regards" __label__bug Update doesn't work Webpanel can't connect to Github. "__label__bug Add metrics support. We want to know how people interact with our apps, but metrics data in every user action, see: https://github.com/hackgt/metrics" "__label__enhancement refactor social buttons to act more like surrogates We are async injecting social buttons every page load, this should be a replacement instead only when it was loaded. cc @ghostwords " "__label__bug URIs missing during failover In the following test, I have 3 node cluster (rh7v-intel64-90-java-stress-1/2/4.marklogic.com) with a forest on each of the hosts and forests on hosts rh7v-intel64-90-java-stress-2/4.marklogic.com configured to failover to rh7v-intel64-90-java-stress-1.marklogic.com. When Query batcher is executed, I stop and start rh7v-intel64-90-java-stress-4.marklogic.com multiple times (for a duration less than suspend time for batcher, greater than suspend time and then greater than node timeout making the forest QBFailover-3 fail over to rh7v-intel64-90-java-stress-1.marklogic.com. In this scenario, the total URIs returned is less than expected. The log is attached [TEST-com.marklogic.client.datamovement.functionaltests.QBFailover.txt](https://github.com/marklogic/java-client-api/files/1301148/TEST-com.marklogic.client.datamovement.functionaltests.QBFailover.txt) ```java @Test public void testRepeatedStopOneNode() throws Exception{ Assert.assertTrue(dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue()==0); addDocs(); Assert.assertTrue(dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue()==6000); AtomicInteger success = new AtomicInteger(0); AtomicInteger failure = new AtomicInteger(0); AtomicBoolean isRunning = new AtomicBoolean(true); QueryBatcher batcher = dmManager.newQueryBatcher(new StructuredQueryBuilder().collection(""XmlTransform"")) .withBatchSize(50).withThreadCount(3); QueryFailureListener[] qfl = batcher.getQueryFailureListeners(); List<QueryFailureListener> batchListeners = Arrays.asList(qfl); batchListeners = new ArrayList<QueryFailureListener>(batchListeners); for (Iterator<QueryFailureListener> iter = batchListeners.listIterator(); iter.hasNext(); ) { QueryFailureListener objList = iter.next(); if (objList.toString().contains(""com.marklogic.client.datamovement.HostAvailabilityListener"")) { iter.remove(); } } batchListeners.add( new HostAvailabilityListener(dmManager) .withSuspendTimeForHostUnavailable(Duration.ofSeconds(15)) .withMinHosts(2)); batcher.setQueryFailureListeners(batchListeners.toArray(new QueryFailureListener[batchListeners.size()])); batcher.onUrisReady((batch)->{ success.addAndGet(batch.getItems().length); }).onQueryFailure(queryException-> { queryException.printStackTrace(); } ); ticket = dmManager.startJob( batcher ); while( ! batcher.isStopped() ){ if (dmManager.getJobReport(ticket).getSuccessEventsCount() > 99 && isRunning.get()){ isRunning.set(false); serverStartStop(hostNames[hostNames.length -1], ""stop""); Thread.currentThread().sleep(6000L); serverStartStop(hostNames[hostNames.length -1], ""start""); Thread.currentThread().sleep(6000L); serverStartStop(hostNames[hostNames.length -1], ""stop""); Thread.currentThread().sleep(18000L); serverStartStop(hostNames[hostNames.length -1], ""start""); Thread.currentThread().sleep(6000L); serverStartStop(hostNames[hostNames.length -1], ""stop""); } } batcher.awaitCompletion(); dmManager.stopJob(ticket); System.out.println(""Success ""+ success.intValue()); System.out.println(""Failure ""+failure.intValue()); assertEquals(""document count"", 6000,success.intValue()); assertEquals(""document count"", 0,failure.intValue()); } private void addDocs(){ WriteBatcher ihb2 = dmManager.newWriteBatcher(); stringTriple = ""<abc>xml</abc>""; stringHandle = new StringHandle(stringTriple); stringHandle.setFormat(Format.XML); meta2 = new DocumentMetadataHandle().withCollections(""XmlTransform""); meta2.setFormat(Format.XML); ihb2.withBatchSize(27).withThreadCount(10); ihb2.onBatchSuccess( batch -> { } ) .onBatchFailure( (batch, throwable) -> { throwable.printStackTrace(); }); dmManager.startJob(ihb2); for (int j =0 ;j < 6000; j++){ String uri =""/local/string-""+ j; ihb2.add(uri, meta2, stringHandle); } ihb2.flushAndWait(); } ```" __label__enhancement Add 'basic knowledge' section A section where you can: - Write & View documents (Markdown?) - Ordered by subject It is there to collect all basic knowledge for a subject "__label__bug 404 page from download email **404 page from download email** Download emails end with: ``` For information about download formats please visit http://www.gbif.org/faq/datause ``` Which is now a broken link. I think we should have a page explaining the common issues around downloads: 1. DWCA and CSV 2. How to open the not-actually-CSV-but-TSV in Excel 3. Possible ways to handle larger downloads ----- fbitem-39a4d411bc907b24fd964c915aaf18cfc4ccb5b8 User provided contact info: @MattBlissett System: Firefox 57.0.0 / Ubuntu 0.0.0 Referer: https://www.gbif.org/faq/datause Window size: width 1688 - height 1282 [API log](http://elk.gbif.org:5601/app/kibana?#/discover?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'2018-01-25T13:20:37.271Z',mode:absolute,to:'2018-01-25T13:26:37.271Z'))&_a=(columns:!(_source),index:'prod-varnish-*',interval:auto,query:(query_string:(analyze_wildcard:!t,query:'response:%3E499')),sort:!('@timestamp',desc))) [Site log](http://elk.gbif.org:5601/app/kibana?#/discover?_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:'2018-01-25T13:20:37.271Z',mode:absolute,to:'2018-01-25T13:26:37.271Z'))&_a=(columns:!(_source),index:'prod-portal-*',interval:auto,query:(query_string:(analyze_wildcard:!t,query:'response:%3E499')),sort:!('@timestamp',desc))) System health at time of feedback: OPERATIONAL " "__label__bug [TW-244] task add ""Description (Information)"" results in ""Description ( Information)"" _Dirk Deimeke on 2012-02-10T09:06:40Z says:_ There is a little formatting error with brackets in descriptions. <pre> $ task add ""abc (cde)"" Created task 51. $ task 51 minimal ID Project Description 51 abc ( cde) 1 task</pre>" __label__bug Main nav items are too close together Seems the ``` .main-nav li a:first-of-type { padding-left: 0; } ``` is too much here? Inheriting from somewhere else. "__label__bug HackerRank profile page 404 Often the HackerRank profile page will 404, causing a day to be missing in the list and update incorrectly in the main spreadsheet page." __label__question Future plans So it looks like this library demonstrates a real weakness in cohttp and how to solve it. But what's the plan going forward? Many of the standard libraries in this domain still rely on cohttp. Should cohttp be patched with the idea in this library? Should everybody switch to using httpaf instead of cohttp? I'm just surprised that httpaf came out and nothing changed in the ecosystem. __label__enhancement [L-19] Update readme "__label__enhancement Användare har sina egna bilder När man går in för att skapa en ny post, gör så att bilder blir specifikt under denna post. Med andra ord, så att när du skapar en ny post så blir du inte störd av de bilder som finns från tidigare poster. Dock skall bilder från tidigare poster finnas på dessa poster om man till exempel vill uppdatera dessa." __label__bug Change image sayfasında datanın geç gelmesinden kaynaklı görsel sorun çözülecek. __label__bug «Invalid parameter format» ## Request ``` [amount] => 37500 [currency] => SAR [merchant_identifier] => mbIdehbb [access_code] => ujIWe0wSHcQoGhevuL8e [merchant_reference] => ORD-2018/02-01309 [customer_email] => dfediuk@gmail.com [command] => PURCHASE [language] => en [return_url] => https://localhost.com:900/store/payfortfort/payment/response [signature] => 55101664921ef04a0ad50db543eb4e2d7d9bf96f1973e251af58254a76713f2 ``` ## Response ``` [amount] => 37500 [response_code] => 00002 [signature] => 4a557f351f0e20ddc3c5b8780d02da43b5da03aebb66d724d0bc0adbb51987f5 [merchant_identifier] => mbIdehbb [access_code] => ujIWe0wSHcQoGhevuL8e [customer_ip] => 212.112.100.86 [language] => en [eci] => ECOMMERCE [command] => PURCHASE [response_message] => Invalid parameter format [merchant_reference] => ORD-2018/02-01309 [customer_email] => dfediuk@gmail.com [currency] => SAR [status] => 00 ``` "__label__bug ISIS broken on FreeBSD (works on Linux) (Master branch only) Commit d9e5b00 (""isisd: bpf: ETHER_HDR_LEN -> ETH_ALEN"") breaks the ISIS hello's on FreeBSD 10.3 (at least). Linux works fine. (Commit verified with a bisect) " "__label__bug crash in client app ```gdb Thread 1 ""daquiri"" received signal SIGABRT, Aborted. __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51 51 ../sysdeps/unix/sysv/linux/raise.c: No such file or directory. (gdb) bt #0 0x00007ffff3dd50bb in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51 #1 0x00007ffff3dd6f5d in __GI_abort () at abort.c:90 #2 0x00007ffff3e1f28d in __libc_message (action=action@entry=do_abort, fmt=fmt@entry=0x7ffff3f464e8 ""*** Error in `%s': %s: 0x%s ***\n"") at ../sysdeps/posix/libc_fatal.c:181 #3 0x00007ffff3e2664a in malloc_printerr (action=<optimized out>, str=0x7ffff3f42eb0 ""malloc(): memory corruption"", ptr=<optimized out>, ar_ptr=<optimized out>) at malloc.c:5425 #4 0x00007ffff3e2a42d in _int_malloc (av=av@entry=0x7ffff4178c20 <main_arena>, bytes=bytes@entry=792) at malloc.c:3740 #5 0x00007ffff3e2e77b in __libc_calloc (n=<optimized out>, elem_size=<optimized out>) at malloc.c:3438 #6 0x00007ffff62ffc8a in H5MM_calloc () at /usr/local/hdf5/lib/libhdf5.so.101 #7 0x00007ffff62902a3 in H5FL_arr_malloc () at /usr/local/hdf5/lib/libhdf5.so.101 #8 0x00007ffff63874fd in H5S_set_extent_simple () at /usr/local/hdf5/lib/libhdf5.so.101 #9 0x00007ffff6387a8c in H5Sset_extent_simple () at /usr/local/hdf5/lib/libhdf5.so.101 #10 0x00007ffff67681cb in hdf5::dataspace::Simple::dimensions(std::vector<unsigned long long, std::allocator<unsigned long long> > const&, std::vector<unsigned long long, std::allocator<unsigned long long> > const&) (this=this@entry=0x7fffffffac30, current=std::vector of length 1, capacity 1 = {...}, maximum=std::vector of length 0, capacity 0) at /home/bdv/dev/h5cpp/src/h5cpp/dataspace/simple.cpp:67 #11 0x00007ffff6768333 in hdf5::dataspace::Simple::Simple(std::vector<unsigned long long, std::allocator<unsigned long long> > const&, std::vector<unsigned long long, std::allocator<unsigned long long> > const&) (this=0x7fffffffac30, current=std::vector of length 1, capacity 1 = {...}, maximum=std::vector of length 0, capacity 0) at /home/bdv/dev/h5cpp/src/h5cpp/dataspace/simple.cpp:47 #12 0x0000555555b9b81a in DAQuiri::Dense1D::save(hdf5::node::Group&) const (this=0x5555566fa790, g=...) at /home/bdv/dev/daquiri/source/consumers/dataspaces/dense1d.cpp:94 ``` where the invoking line is ```cpp auto dspace = hdf5::dataspace::Simple({maxchan_}); ``` where ``maxchan_ = 15`` " "__label__bug Failed to restart/start *Installation details* Scylla version (or git commit hash): 2.0.2-0.20171201.07b039f Cluster size: 1 OS (RHEL/CentOS/Ubuntu/AWS AMI): CentOS *Hardware details (for performance issues)* Delete if unneeded Platform (physical/VM/cloud instance type/docker): pysical Hardware: sockets=1 cores=4 hyperthreading=8 memory=32GB Disks: (SSD/HDD, count) HDD 1 I installed ScyllaDB on a fresh CentOS server. Everything worked fine. Server was up and running. I restarted the services and it failed. I uninstall ScyllaDB several times and remove all configs. I was hoping maybe a fresh install might fix this issue but it didn't. Below is the output of failure(I didn't touch configs): [bebu@namooria ~]$ sudo service scylla-server status -l Redirecting to /bin/systemctl status -l scylla-server.service * scylla-server.service - Scylla Server Loaded: loaded (/usr/lib/systemd/system/scylla-server.service; enabled; vendor preset: disabled) Active: failed (Result: exit-code) since Fri 2018-01-26 20:04:58 CST; 8s ago Process: 134195 ExecStopPost=/usr/lib/scylla/scylla_stop (code=exited, status=0/SUCCESS) Process: 134098 ExecStart=/usr/bin/scylla $SCYLLA_ARGS $SEASTAR_IO $DEV_MODE $CPUSET (code=exited, status=1/FAILURE) Process: 134094 ExecStartPre=/usr/lib/scylla/scylla_prepare (code=exited, status=0/SUCCESS) Main PID: 134098 (code=exited, status=1/FAILURE) Jan 26 20:04:57 namooria scylla_prepare[134094]: already tuned: /sys/devices/pci0000:00/0000:00:01.0/0000:02:00.0/host0/target0:2:0/0:2:0:0/block/sda/queue/scheduler Jan 26 20:04:57 namooria scylla_prepare[134094]: already tuned: /sys/devices/pci0000:00/0000:00:01.0/0000:02:00.0/host0/target0:2:0/0:2:0:0/block/sda/queue/nomerges Jan 26 20:04:57 namooria scylla_prepare[134094]: tuning /sys/devices/virtual/block/dm-4 Jan 26 20:04:57 namooria scylla[134098]: Scylla version 2.0.2-0.20171201.07b039f starting ... Jan 26 20:04:57 namooria scylla[134098]: [shard 0] init - Could not read configuration file /etc/scylla/scylla.yaml: YAML::TypedBadConversion<seastar::basic_sstring<char, unsigned int, 15u> > (yaml-cpp: error at line 0, column 0: bad conversion) Jan 26 20:04:57 namooria scylla[134098]: [shard 0] seastar - Exiting on unhandled exception: YAML::TypedBadConversion<seastar::basic_sstring<char, unsigned int, 15u> > (yaml-cpp: error at line 0, column 0: bad conversion) Jan 26 20:04:58 namooria systemd[1]: scylla-server.service: main process exited, code=exited, status=1/FAILURE Jan 26 20:04:58 namooria systemd[1]: Failed to start Scylla Server. Jan 26 20:04:58 namooria systemd[1]: Unit scylla-server.service entered failed state. Jan 26 20:04:58 namooria systemd[1]: scylla-server.service failed. [bebu@namooria ~]$ journalctl -xe No journal files were found. -- No entries --" "__label__bug 11/2/2000 (Yesterday) Reactivated (assigned to Willie the Lead Developer) by Jill the Very, Very Good Tester * Start Bee Flogger * Create an unnamed document simply containing the letter “a” * Click on the FTP button on the toolbar * Try to ftp to your server BUG: Observe; the ftp server is no longer responding. Indeed ps -augx shows that it is not even running and there is a core dump in /. EXPECTED: No crash" __label__enhancement Implement repository editing in repository page A user should be able to edit repository information in project tab. "__label__enhancement ros2 run rviz2 rviz2 Currently in the deb package there is rviz2 available, but it is not start-able via ros2 run. To enable this would enhance the usability and user experience of rviz." __label__enhancement QA Quarterly Donor Test class Write the test class for the quarterly donor report controller. "__label__question Github: Squash merging of PR not detected ### Steps to reproduce 1. Create a Weblate project with github type, install hub tool for PR style workflow 2. Create local changes, commit and push them in Weblate´s web interface 3. Weblate creates PR on Github 4. Merge the PR on the Github webpage 5. Pull in Weblate´s web interface ### Actual behaviour Weblate pulls and wants to push local changes again, as it does not see it´s changes being merged on remote head ### Expected behaviour Weblate pulls, should see squash merge and continue normally to commit on remote head ### Server configuration * Weblate 2.15 * Python 2.7.12 * Django 1.11.2 * six 1.10.0 * social-auth-core 1.4.0 * social-auth-app-django 1.2.0 * django-appconf 1.0.2 * Translate Toolkit 2.2.3 * Whoosh 2.7.4 * defusedxml 0.5.0 * Git 2.7.4 * Pillow (PIL) 1.1.7 * dateutil 2.6.0 * lxml 3.8.0 * django-crispy-forms 1.6.1 * compressor 2.1.1 * djangorestframework 3.6.3 * pytz 2017.2 * pyuca N/A * python-bidi 0.4.0 * pyLibravatar N/A * PyYAML 3.12 * hub 2.2.9 * Database backends: django.db.backends.mysql " "__label__enhancement Who/target argument Allow targeting a specific target, rather than self reminders" "__label__bug RStudio Server installation can't install packages It's not possible to install packages from RStudio Server (after following the directions [here](https://github.com/Azure/aztk/wiki/SparklyR-on-Azure-with-AZTK) and logging in at localhost:8787). For example ``` install.packages(""sparklyr"") ``` fails with various ""Permission Denied"" errors. The problem is that R_HOME is set to /usr/local/lib/R/site-library, which is not writeable by the RStudio user. Running `chmod -R a+w /usr/local/lib/R/site-library` as root works around the problem, but it's a hack." __label__bug Fix Block without key "__label__enhancement 32-bit warning when launching Wesnoth on macOS 10.13.4 and later When launching _The Battle for Wesnoth_ on macOS 10.13.4 and later, the user sees the following warning: ![image](https://user-images.githubusercontent.com/2218817/35726269-97a62c72-0804-11e8-8a14-e1f743cf2947.png) This is due to Apple phasing out support for 32-bit apps on macOS, [much like they did for iOS](http://www.idownloadblog.com/2017/06/06/ios-11-no-32-bit-app-support/) last year. [From Apple's website](https://developer.apple.com/news/?id=12012017a): > If you distribute your apps outside the Mac App Store, we highly recommend distributing 64-bit binaries to make sure your users can continue to run your apps on future versions of macOS. The last macOS release to support 32-bit apps without compromise is macOS High Sierra. macOS High Sierra (a.k.a. 10.13) is the latest version of macOS, so we can expect that macOS 10.14, probably available in Q3 2018, will be unable to run 32-bit apps (or will run them ""with compromise""). If Apple follows the same pattern that they did with iOS, we can expect that in the coming months the operating system will start showing more aggressive messages encouraging developers to update their app to 64-bit. As the guidelines above say, the only solution to ensure compatibility with future versions of macOS is to distribute the Mac binary as a 64-bit app. The last Mac sold with a 32-bit CPU [was in 2006](https://apple.stackexchange.com/a/99644/64937), so any Mac sold in the last 12 years will be able to run a 64-bit version of _The Battle for Wesnoth_. What will it take to convert the Mac version of Wesnoth to 64-bit before the next version of macOS comes out?" "__label__bug ads1115 is obfuscating a sign for values between 0 and -1mV in integer build ### Expected behavior This is the case for integer build only Positive and negative values derived from volt and volt_dec in the range -1mV .. +1mV should be different for different polarization. ### Actual behavior As the voltage raises above the -1mV, the volt is 0 and volt_dec is positive. raising about -1 mV ------------------ volt volt_dec dac -1 93 65466 -1 46 65469 0 984 65473 0 937 65476 0 875 65480 crossing zero ---------------- volt volt_dec dac 0 31 65534 0 15 65535 0 0 0 0 15 1 0 31 2 ### Workaround Look at the dac value and correct the sign. or Do yourself the dac conversion. or Use floating build ### Test code ```Lua id, scl, sda = 0, 1, 2 i2c.setup(id, sda, scl, i2c.SLOW) ads1115.setup(ads1115.ADDR_GND) ads1115.setting(ads1115.GAIN_0_512V, ads1115.DR_8SPS, ads1115.DIFF_0_1, ads1115.CONTINUOUS) main_timer = tmr.create() main_timer:alarm(1000, tmr.ALARM_AUTO, function() volt, volt_dec, adc = ads1115.read() print(volt, volt_dec, adc) end) ``` ### NodeMCU version dev branch, bee404c35890bbbcb4dd158991adb25621337a50 ### Hardware wemos D1 with ads1015 (max gain, differential between in0 and in1, address pin grounded, 3.3V power). " "__label__bug Update CSV column names in manual page * the manual pages are out of sync with the code, which uses shortened column names" "__label__enhancement Add regex validation for email Basic stuff is fine, looking up libraries now " __label__enhancement Create list view for workout types. "__label__enhancement missing type arguments for callable constructors Currently you can define callable constructors in n4jsd files like: ```typescript export external public class CallableThing { (arg: number): any } // let foo = CallableThing(707); ``` But we need a way to have a parameterized callable constructor. The two options discussed were: Allow the callable constructor access to a class type argument ```typescript export external public class CallableThing<T> { (arg: T): T } // let foo: number = CallableThing<number>(707); ``` or allow a callable constructor with a type argument ```typescript export external public class CallableThing { <T> (arg: T): T } // let foo: number = <number>CallableThing(707); ``` Also, to be considered a third option of allow both ```typescript export external public class CallableThing<S> { <T> (arg: S): T } // let foo: number = <number>CallableThing<string>(""hello friend""); ``` " __label__enhancement Undocumented: multiline comment as a docstring Undocumented feature: LibPQ treats multiline comment on top of the source code as a docstring "__label__bug Unreliable coverage testing There seems to be some variability in the coverage results reported. See discussion in PR #324. A potential solution is changing the coverage testing to disallow lowering the coverage, not only to compare against a specified threshold." "__label__enhancement Analytics I know there will be a bit of controversy around this issue, but I think analytics are specially important in the wiki, to know what documents are read more, in order to polish them and do more content on similar issues. I'm sure we can do this in a privacy preserving way without selling our community to Google, but in this case I think it is pretty hard to improve without stats. PS: We could also add feedback buttons at the end of each page: 'How useful was this document in a scale from Ethereum to Tron?' And we could have ppl click directly in the crypto logo lol." __label__enhancement Feature Request: Tab Completion in Terminal I'm using the terminal client on Ubuntu. It would be great if we could have *tab completion in the command-line mode* for files and items within the notebook. This would make this great already great application extra convenient and amazingly fast in the terminal. __label__enhancement Сохранение подписей к комментам __label__question Is ther a click listerner for the profiles How can i implement a click listerner on the profiles in the header? "__label__bug `text-decoration: underline` missing in export Steps to reproduce: - Created all of my text styles, the links are underlined. ![image](https://user-images.githubusercontent.com/1864971/33651710-ace662ee-da1b-11e7-98cd-090154beb73d.png) - Used plugin to export the styles to `text-styles.json` file - Opened a new Sketch file, imported `text-styles.json` file and this is what is imported: ![image](https://user-images.githubusercontent.com/1864971/33651933-57f84da0-da1c-11e7-8306-4a9c9405d6e3.png) " "__label__enhancement Switch away from the porcelain API Specifically [LogCommand](http://wiki.eclipse.org/JGit/User_Guide#LogCommand_.28git-log.29) - it appears unusable and always throws `java.lang.IllegalStateException: Command org.eclipse.jgit.api.LogCommand was called in the wrong state`. Looking at the source code I just don't see how to make it ""callable"". For iterating commits, let's use [RevWalk](http://wiki.eclipse.org/JGit/User_Guide#RevWalk) instead." __label__bug Fix the AL strategies that are throwing exceptions "__label__enhancement Automatic Transitive Deployment for NPM & Bower WebJars After successfully packaging `""org.webjars.npm"" % ""multiline"" % ""1.0.2""` and including it in my `build.sbt`, I get: ``` [vocities] $ run 9001 [info] Updating {file:/home/blast/Projects/vocities/vocities/}root... [info] Resolving org.webjars.npm#strip-indent;[1.0.0,2) ... [warn] module not found: org.webjars.npm#strip-indent;[1.0.0,2) [warn] ==== local: tried [warn] /home/blast/.ivy2/local/org.webjars.npm/strip-indent/[revision]/ivys/ivy.xml [warn] ==== activator-launcher-local: tried [warn] file:/home/blast/.tools/localized/activator-1.3.2-minimal/repository/org.webjars.npm/strip-indent/[revision]/ivys/ivy.xml [warn] ==== public: tried [warn] http://repo1.maven.org/maven2/org/webjars/npm/strip-indent/[revision]/strip-indent-[revision].pom [warn] ==== typesafe-releases: tried [warn] https://repo.typesafe.com/typesafe/releases/org/webjars/npm/strip-indent/[revision]/strip-indent-[revision].pom [warn] ==== typesafe-ivy-releasez: tried [warn] https://repo.typesafe.com/typesafe/ivy-releases/org.webjars.npm/strip-indent/[revision]/ivys/ivy.xml [warn] ==== Typesafe Releases Repository: tried [warn] https://repo.typesafe.com/typesafe/releases/org/webjars/npm/strip-indent/[revision]/strip-indent-[revision].pom [warn] ==== sonatype-releases: tried [warn] https://oss.sonatype.org/content/repositories/releases/org/webjars/npm/strip-indent/[revision]/strip-indent-[revision].pom [warn] ==== google-sedis-fix: tried [warn] http://pk11-scratch.googlecode.com/svn/trunk/org/webjars/npm/strip-indent/[revision]/strip-indent-[revision].pom [info] Resolving jline#jline;2.11 ... [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: org.webjars.npm#strip-indent;[1.0.0,2): not found [warn] :::::::::::::::::::::::::::::::::::::::::::::: [trace] Stack trace suppressed: run last *:update for the full output. [error] (*:update) sbt.ResolveException: unresolved dependency: org.webjars.npm#strip-indent;[1.0.0,2): not found [error] Total time: 8 s, completed Aug 29, 2015 3:27:18 PM ``` I'm now manually packaging `strip-indent@1.0.0`, but it should have been automatically picked up and packaged, imho. " __label__bug testing new zap https://test-company1.kayako.com/conversation/view/7 __label__bug test 姆咪姆咪心動動 "__label__bug Validation problem Recovery form -> empty email -> submit: > TypeError: Argument 1 passed to Da\User\Service\PasswordRecoveryService::sendMail() must be an instance of Da\User\Model\User, null given, called in ..\vendor\2amigos\yii2-usuario\src\User\Service\PasswordRecoveryService.php on line 53 and defined in ..\vendor\2amigos\yii2-usuario\src\User\Traits\MailAwareTrait.php:36 I think need add validation [here](https://github.com/2amigos/yii2-usuario/blob/f0915a284a5dc8a538235b601609b08e2a66b1a3/src/User/Controller/RecoveryController.php#L97) like a [RegistrationController::register()](https://github.com/2amigos/yii2-usuario/blob/f0915a284a5dc8a538235b601609b08e2a66b1a3/src/User/Controller/RegistrationController.php#L101), and check other places without non-ajax validation. ` if ($form->load(Yii::$app->request->post()) && $form->validate()) {`" "__label__enhancement Add a data source for storage accounts We have a use case that could really make use of a storage account data source. Is there a philosophical reason why that doesn't exist right now? (Or why the current set of data sources are the data sources that do exist?) We have our infrastructure deployed through a collection of modules, and one of our patterns has been to define a shared resource in one module, and then use a data source in another module to do things to it. For example, a core module might define a virtual network resource, and then we'd make a data source for that virtual network in a different module that might want to add a subnet to it. I understand the data source isn't strictly necessary, since you can generally just refer to things by name, which you need to get the data source in the first place anyway. But it's a little peace of mind (and easier debugging?) when the data source object fails first during a Terraform run if the referenced resource isn't there." "__label__bug [Baloons] Confusion in when the player loses ### 1.2.0 (release6), Android ### 2.13.4 It was reported that the tester made a mistake and he still had 40 seconds but the game ended with 2 cookies. It is a bit confusing " __label__enhancement Support Rails 4.2 __label__enhancement Action の Archive 機能がない。 __label__enhancement Allow encrypted keys Seriously. __label__bug 24 Hours mode - Minutes selection 1. Open dateTime dialog 2. Select date 3. Click on minutes Expected screen - minutes selection Actual screen - hours selection When touch on the clock face the UI not changed but minutes values changes. "__label__question Mobile and desktop view Hey, In screenshot ,its showing unrelated content which i could not able to identify in site. This is link used: https://www.saiglobal.com/ ![capture_standard_1 4 3](https://cloud.githubusercontent.com/assets/24872057/21585999/dfa0725e-d0f0-11e6-842d-f84e6dd02e39.PNG) If you look into the screenshot, there wont be search or menu button.i am not sure how it got retrieved. Do you have any configuration to switch for mobile and desktop view? " __label__bug [TW-1375] Use of ^ in regex parsed as exponentiate operator _lolilolicon on 2014-07-11T16:30:53Z says:_ {code:title=task 'tag ~ ^...$'} Cannot exponentiate strings {code} {code:title=debug info} Tree (19 nodes) root arg0 basename='task' raw='task' ORIGINAL BINARY TW argIns raw='(' OP FILTER argIns name='status' raw='pending' ATTRIBUTE MODIFIABLE FILTER argAtt raw='status' argAtt raw='==' OP argAtt raw='pending' argIns name='limit' raw='page' PSEUDO FILTER argIns raw=')' OP FILTER argIns canonical='next' raw='next' CMD READCMD DEFAULT arg1 raw='tag ~ /^...$/' ORIGINAL QUOTED FILTER argOp raw='and' OP FILTER argSub raw='tag' argSub raw='~' OP argSub raw='/' OP argSub raw='^' OP argSub raw='...$' argSub raw='/' OP arg2 name='debug' raw='rc.debug=1' value='1' ORIGINAL CONFIG FILTER Infix ( ( status == pending ) and tag ~ / ^ ...$ / ) FILTER Infix parsed ( ( status == pending ) and tag ~ / ^ ...$ / ) FILTER Postfix status pending == tag ...$ ^ / / ~ and {code} __label__enhancement ssl_ca_certs_from_system once released https://github.com/zendesk/ruby-kafka/pull/521/files __label__bug `update_fail_htlc` reason fail #88 を修正することで `update_fail_htlc` は発生しないようになったが、そもそも今回気付いたのは `update_fail_htlc` を受信した時にreasonのチェックで失敗しているためであった。 解析方法がよくないか、 `c-lightning` のエンコードが間違っているかのどちらかである。 "__label__bug Lua file problem ## **Summary** Try to test lua script with trial battle. Enable Viramate keyboard. Select wind enemy with fire team, prefer Shiva summon. All other state: picking quest, element, summon are fine. But when running lua script step, nothing happen. I try to follow the lua script in zooey bot but it doesn't work. An example lua script maybe. ## **Game information** Account type: Mobage Ingame language: English ## **System information** OS: Windows 10 Pro 64-bit Screen resolution: 1920x1280 @ 1.0x Chrome version: 63.0.3239.132 (Official Build) (64-bit) Node.js version: v8.9.4 Python version: 3.6.3 ## **Configuration** ``` [Server] ListenerPort=49544 ProcessTimeoutInMs=60000 WorkerTimeoutInMs=500 WaitAjaxTimeoutInMs=5000 JsonRpcEndpoint=/jsonrpc [Controller] ListenerPort=49545 MouseTween=easeInOutCubic [Debug] LogLevel=debug LogToFile=false LogToOutput=true LogToFileDirectory=log LogSocket=false ThrowErrors=false TrialBattleMode=false [General] Language=en MaxNumActionRetries=2 MinWaitTimeInMsAfterRefresh=2000 TimeLimitInSeconds=3600 UseViramate=true MaxNumPotionsToUse=999 UseFullElixirsWhenNoRemainingHalfAPPotions=false UseFullElixirsFirst=false Treasure= TreasureTarget= [Inputs] DelayInMsBetweenMouseDownAndUp=40 RandomDelayInMsBetweenMouseDownAndUp=20 MouseSpeed=580 MouseSpeedBase=150 MouseScrollSpeed=250 ExitKeyCode=112 WaitTimeInMsBeforeClickInput=50 [PartySelection] PreferredPartyGroup=2 PreferredPartyDeck=1 PreferredPartySet=A PreferredNightmareModePartyGroup=2 PreferredNightmareModePartyDeck=1 PreferredNightmareModePartySet=A [Summons] OnlyRerollSummonsEnabled=false PreferredSummons=Shiva,Athena,Sethlans,Colossus DefaultSummonAttributeTab=Fire RerollSummonWhenNoPreferredSummonWasFound=false [Combat] MinWaitTimeInMsAfterAttack=500 MinWaitTimeInMsAfterSummon=3000 MinWaitTimeInMsAfterAbility=2200 LuaScript=scripts/demo.lua [PokerMode] Enabled=false ChipAmount=1000 WinningRoundCap=5 WinningChipsCap=16000 WinningRateBase=0.75 WinningRateModifier=0.08 [EventMode] Enabled=true EventRaidUrl=""http://game.granbluefantasy.jp/#quest/supporter/990041/17"" EventRaidScript=scripts/demo.lua NightmareModeUrl=""http://game.granbluefantasy.jp/#quest/supporter/510051/5"" NightmareModeScript=scripts/demo.lua EventPageUrl=""http://game.granbluefantasy.jp/#trial_battle"" NightmareModePreferredSummons=Shiva NightmareModeSummonAttributeTab=Fire RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true NightmareModeAvailableAtStart=false WaitTimeInMsAfterEventPageIsLoaded=1000 [EventTreasureMode] Enabled=false EventTreasureUrl= EventTreasureSoloUrl= EventTreasureSoloModeScript= EventTreasureRaidUrl= EventTreasureRaidModeScript= EventTreasureRaidItemRequiredCount= NightmareModeUrl= NightmareModeScript= NightmareModePreferredSummons= NightmareModeSummonAttributeTab= RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true NightmareModeAvailableAtStart=false [RiseOfTheBeastsMode] Enabled=false RiseOfTheBeastsUrl= RiseOfTheBeastsLuaScript= [CoopSoloMode] Enabled=false LuaScript= [CoopGuestMode] Enabled=false LuaScript= [CustomizedScheduling] Enabled=false SchedulingLuaScript= [DimensionalHalo] RetreatWhenNoDimensionalHaloTransformation=true ``` ## **Extension.js** ``` module.exports = [""gbf-autopilot-core""]; module.exports = [""gbf-autopilot-poker""]; ``` ## **Lua Script** ``` EnableChargeAttack() if turn == 1 then character_1:UseSkill(1) :UseSkill(2) :UseSkill(3) :UseSkill(4) else character_1:UseSkill(2) end character_2:WithWaitTime(500):UseSkill(3) character_4:UseSkill(2) character_2:UseSkill(1) character_3:UseSkill(1) ``` ## **Log file** ``` [1] * Running on http://localhost:49545/ (Press CTRL+C to quit) [0] 2018-02-03T10:57:08.211Z - debug: Started listening on localhost:49544 [0] 2018-02-03T10:57:15.933Z - debug: Client 'fYEgfpqlyx3crsA9AAAA' connected! [0] 2018-02-03T10:57:15.939Z - debug: Socket 'fYEgfpqlyx3crsA9AAAA' started [1] 127.0.0.1 - - [03/Feb/2018 19:57:15] ""POST / HTTP/1.1"" 200 - [0] 2018-02-03T10:57:15.959Z - info: Autopilot started. [0] 2018-02-03T10:57:15.960Z - info: Using 'Event' mode. [0] 2018-02-03T10:57:15.970Z - debug: Location change: http://game.granbluefantasy.jp/#trial_battle [0] 2018-02-03T10:57:16.987Z - debug: Waiting element: .atx-lead-link [0] 2018-02-03T10:57:16.999Z - debug: Checking element: .ico-difficulty-5,.ico-difficulty-8 [0] 2018-02-03T10:57:17.145Z - info: Using quest page: http://game.granbluefantasy.jp/#quest/supporter/990041/17 [0] 2018-02-03T10:57:17.153Z - debug: Ajax: GET /quest/user_action_point [0] 2018-02-03T10:57:17.313Z - debug: Ajax: GET /quest/quest_data/990041/17 [0] 2018-02-03T10:57:17.495Z - debug: Ajax: POST /quest/set_return_point [0] 2018-02-03T10:57:17.776Z - debug: Location change: http://game.granbluefantasy.jp/#quest/supporter/990041/17 [0] 2018-02-03T10:57:18.838Z - debug: Waiting element: .atx-lead-link [0] 2018-02-03T10:57:18.844Z - debug: Checking element: .icon-supporter-type-1.unselected [0] 2018-02-03T10:57:18.848Z - debug: Clicking element: .icon-supporter-type-1 [1] 127.0.0.1 - - [03/Feb/2018 19:57:19] ""POST / HTTP/1.1"" 200 - [0] 2018-02-03T10:57:19.357Z - debug: Timeout: 50 [0] 2018-02-03T10:57:19.407Z - debug: Preferred summons: 0=Shiva, 1=Athena, 2=Sethlans, 3=Colossus [0] 2018-02-03T10:57:19.575Z - info: Selected summon: Shiva [0] 2018-02-03T10:57:19.576Z - debug: Timeout: 50 [1] 127.0.0.1 - - [03/Feb/2018 19:57:20] ""POST / HTTP/1.1"" 200 - [0] 2018-02-03T10:57:20.112Z - debug: Waiting element: .pop-deck.supporter [0] 2018-02-03T10:57:20.726Z - debug: Timeout: 500 [0] 2018-02-03T10:57:21.227Z - debug: Using party set: A [0] 2018-02-03T10:57:21.227Z - debug: Clicking with condition: .btn-deck-group [0] 2018-02-03T10:57:21.228Z - debug: Checking element: .btn-deck-group.type-groupA [0] 2018-02-03T10:57:21.237Z - debug: Using party group: 2 [0] 2018-02-03T10:57:21.238Z - debug: Clicking with condition: .btn-select-group.id-2 [0] 2018-02-03T10:57:21.238Z - debug: Checking element: .btn-select-group.id-2.selected [0] 2018-02-03T10:57:21.248Z - debug: Timeout: 500 [0] 2018-02-03T10:57:21.750Z - debug: Using party deck: 1 [0] 2018-02-03T10:57:21.750Z - debug: Clicking with condition: .prt-deck-slider li:nth-child(1) > a [0] 2018-02-03T10:57:21.750Z - debug: Checking element: .prt-deck-slider li:nth-child(1) > a.flex-active [0] 2018-02-03T10:57:21.762Z - debug: Starting battle... [0] 2018-02-03T10:57:21.763Z - debug: Clicking with condition: .btn-usual-ok [0] 2018-02-03T10:57:21.766Z - debug: Clicking element: .btn-usual-ok [1] 127.0.0.1 - - [03/Feb/2018 19:57:22] ""POST / HTTP/1.1"" 200 - [0] 2018-02-03T10:57:22.272Z - debug: Timeout: 750 [0] 2018-02-03T10:57:23.025Z - debug: Clicking element: .btn-usual-ok [0] 2018-02-03T10:57:23.439Z - debug: Waiting element: .btn-attack-start.display-on,.btn-result,.cnt-result [1] 127.0.0.1 - - [03/Feb/2018 19:57:23] ""POST / HTTP/1.1"" 200 - [0] 2018-02-03T10:57:23.533Z - debug: Timeout: 750 [0] 2018-02-03T10:57:28.575Z - debug: Viramate: type=getCombatState [0] 2018-02-03T10:57:28.640Z - debug: Viramate: type=getCombatState [0] 2018-02-03T10:57:28.667Z - debug: Checking element: .btn-result [0] 2018-02-03T10:57:28.679Z - debug: Viramate: type=getCombatState [0] 2018-02-03T10:57:28.789Z - debug: Running script: C:/Users/MSI2/Desktop/autobot2/gbf-autopilot/scripts/demo.lua ``` ## **Screenshot** ![image](https://user-images.githubusercontent.com/34344789/35766471-d12f6850-091c-11e8-9f11-1f82995ab785.png) " __label__bug In academic performance student performance is not showing correctly while checking subject wise performance its shows other class performance "__label__enhancement Update AWS Secret Access Key in accordance with new Best Practice Important Change - Managing Your AWS Secret Access Keys As described in a previous announcement, you cannot retrieve the existing secret access keys for your AWS root account, though you can still create a new root access key at any time. As a best practice, we recommend creating an IAM user that has access keys rather than relying on root access keys. https://aws.amazon.com/blogs/aws/important-aws-account-key-change-coming-on-april-21-2014/" "__label__enhancement Feature: SVN Remote Status statusBar Icon It would be nice to have a status bar icon display to show the user that remote updates are present. Running the command `svn status -u -q` would show us remote changes that are not currently updated in the project. Possibly adding a config setting for frequency x mins , and have the statusBar Icon display some signal showing project is updated, and show another with possibly the number of changes that are not within the project. [Current] | [10 Updates] I am happy to do this, but would like some insight on what areas of the code this type pf functionality should go. " __label__bug BinaryHeap Runtime Issue (Test) test __label__enhancement wish module "__label__question Django 2.0 Hey, I want to discuss our strategy for `Django 2.0`. Django 2.0 only supports Python 3, so I would propose that we should have 2 branches. - master for Version 1.0 with only Python3 support - v0.9 with Python2 support What are your opinion?" "__label__bug Baseof.html in a theme is prioritized over non-theme peer equivalent UPDATE: All cases work except #5 in V 0.21. (Case #5 works in V 0.19) - Using latest MacOSX 10.12.4 & Hugo 0.20.7 (Tested known good on 0.19). - I created a github repo to show this behaviour. It works on 0.19. - I used `brew switch hugo 0.19` to flip back and forth to verify issue. - https://github.com/ntharani/hugoblock (To verify issue) - I did my best to follow the guidelines and pretty sure this a bug, but if I haven't understood a quirk of how the new output formats or my syntax is wrong please let me know. Thanks. <h2>Setup</h2> - Main layout baseof.html > styles-primary.css = blackbackground - Theme layout baseof.html > styles-theme.css = greenbackground <h2>To test: Rename files to simulate unavailability.</h2> - Eg: ""index.html"" -> ""Xindex.html"" - Eg: ""baseof.html"" -> ""Xbaseof.html"" <h2>Expected Behaviour</h2> <ul> <li>#1 Main > layouts > index.html & Main > layouts > baseof.html == White Text / Black Background </li> <li>#2 Main > layouts > index.html & Theme > layouts > baseof.html == White Text / Green Background </li> <li>#3 Theme > layouts > index.html & Theme > layouts > baseof.html == White Text / Green Background </li> <li>#4 Theme > layouts > index.html & Main > layouts > baseof.html == White Text / Black Background </li> <li>#5 Theme > layouts > index.html & Theme > layouts > baseof.html & Main > layouts > baseof.html == White Text / Black Background (if baseof.html exists in the primary folder it should take precedence over it's theme equivalent) </li> </ul> <h2>Observed Behaviour</h2> - #4 V0.20.7 Results in a Blank Page. This should be white text on a black background. - #4 V0.19 Works: white text on a black background. I tried all the 0.20 branches - same behaviour as 0.20.7. This same behaviour happens with sections, like blog, but index was easier to verify. - https://github.com/ntharani/hugoblock ├── layouts │   ├── Xindex.html │   └── _default │   └── baseof.html ├── static │   └── css │   └── styles-primary.css └── themes └── hyper │   └── default.md ├── layouts │   ├── _default │   │   ├── Xbaseof.html │   │   ├── list.html │   │   └── single.html │   ├── index.html ├── static │   ├── css │   │   └── styles-theme.css └── theme.toml" "__label__enhancement Feature Request: ""Attention is All You Need"" This is a very interesting paper which shouldn't be super-difficult to implement, and would also test the extensibility of xnmt: https://arxiv.org/abs/1706.03762 If someone is interested I think this would be a great example to have." "__label__bug SideSwipe not working inside ScrollView Following your example: ```javascript import { View, Dimensions, ScrollView } from 'react-native'; export default class SweetCarousel extends Component { state = { currentIndex: 0, }; render = () => { // center items on screen const { width } = Dimensions.get('window'); const contentOffset = (width - Card.WIDTH) / 2; return ( <ScrollView> <SideSwipe index={this.state.currentIndex} itemWidth={Card.WIDTH} style={{ width }} data={data} contentOffset={contentOffset} onIndexChange={index => this.setState(() => ({ currentIndex: index })) } renderItem={({ itemIndex, currentIndex, item, animatedValue }) => (...)} /> ... </ScrollView> ); }; } ```" __label__enhancement Windows (dokany) support [Dokany](https://github.com/dokan-dev/dokany) (windows implementation of userspace filesystem) is currently support FUSE API. It means that jnr-fuse can use Docany as well as linux FUSE implementation. The problem is only in [this line](https://github.com/SerCeMan/jnr-fuse/blob/master/src/main/java/ru/serce/jnrfuse/AbstractFuseFS.java#L50) - library name. Docan library named as `dokanfuse1`. Think system property is good solution. "__label__enhancement implement the low-level API In the [Javascript API document](https://fidoalliance.org/specs/fido-u2f-v1.2-ps-20170411/fido-u2f-javascript-api-v1.2-ps-20170411.pdf) they define both a low-level message port API and a high-level javascript API. This extension currently implements the high level API, but does its own thing for the low level. The documentation explicitly discourages people from relying on the low-level API: > Although this specification refers to two separate API levels, we want to discourage a Relying Party (RP) from implementing directly against the Low-level MessagePort API as this may be deprecated in future versions of this specification. RPs should rather implement against the High-level JavaScript API and use a library that abstracts the lower-level MessagePort API if required. However, in effect we're implementing something very like it anyway, since the extension works by passing messages between the native Swift implementation, and some injected javascript. We're using slightly a different format for the messages we're passing back & forth, and we're not tracking callbacks in quite as reliable a manner, but otherwise we're doing roughly the same thing as the low-level API. I can see no problem with making our low-level code actually conform to the low-level spec, so we might as well. At best, it might improve compatibility. At worst, it should have no negative effects." "__label__question Support for texture3d assets? Will there be support for 3D textures, and 3D noise functions?" "__label__bug SSL Handshake on macOS SIGABRT's Using this example route: ```swift router.get() { request -> Response in let googleClient = try request.make(Client.self) let google = try googleClient.get(URI(""https://google.com"")).await(on: request) print(google.http.body) return Response(http: HTTPResponse(status: .ok), using: request) } ``` The TLS handshake crashes at `AppleTLSSocket.swift`, line 83: ``` malloc: *** error for object 0x101c23080: pointer being freed was not allocated *** set a breakpoint in malloc_error_break to debug ``` Using Swift 4.1 (1/30) and all packages are up to date (used `swift package update` not `vapor update`)." __label__bug After geom calc index error in check_input if too many fixed distances are still set __label__enhancement Support _filedates file * Set last modification date from _filedates file on extraction on windows and linux. (detect Tropico 4/5) * Generate _filedates file and add option to select the date format on creation. "__label__enhancement Import and export in Blob dialog _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2777 Originally created at: Sat Feb 14 14:09:34 2015 Originally last updated at: Sat Feb 14 14:09:34 2015 In blob dialog two buttons for import data from file and button to save as file. would be possible to detect whether the data is an image (PNG,, JPG, BMP or GIF) from the first bytes and add tab to display? jpg = "FF", "D8" bmp ="42", "4D" gif = "47", "49", "46" png = "89", "50", "4E", "47", "0D", "0A", "1A", "0A"\n\n**Operating system:**\nWindows (other)" __label__bug Transformation log file is empty Transformation log entries are not persisted to disk. "__label__bug Incorrect request being inserted into m_wait_list Core 0 makes requests with the following attributes: Cycle 0: Addr: ffffffffffc0, kind: 1, tid: 0, is_large: 1, core 0 Cycle 1: Addr: 7fffffffffc0, kind: 2, tid: 0, is_large: 1, core: 0 Core 1 makes requests with the following attributes Cycle 3: Addr: 7fffffffffc0, kind: 1, tid: 0, is_large: 1, core 1 While issuing the first request to memory on core 0 (with addr = ffffffffffc0), the actual request which gets added to m_wait_list is the one with previous address addr = 7fffffffffc0). Seen at commit https://github.com/ymarathe/TLB-Coherence-Simulator/commit/8149d4b1926898f1816d0ea91b8ea04886417d1e" __label__bug Malformed string found in Euler Problem 38 solution aswer Missing closing parenthesis. "__label__enhancement Jenkins Job Testing Capacity Shortage on Seed Clusters **Issue by [vlerenc](https://github.com/vlerenc)** _Thursday Oct 19, 2017 at 07:30 GMT_ _Originally opened as https://git.removed/kubernetes-attic/garden-operator/issues/148_ ---- We had to terminate the cluster auto scaler on the seeds because: * An older Calico version is deployed there and we know that it results in issues after lots of scale-up/down due to bugs that fail to cleanup IP ranges * It still lacks (was said to be implemented for v1.8 but wasn't) the feature to reserve excess capacity and our seed clusters started breathing with the integration tests, which resulted in many issues as pods take minutes to be scheduled However, now we have a fixed number of workers in the seeds. This means we have to scale manually, but lack indication thereof. Therefore we need Jenkins jobs per seed that test for the used vs. the available capacity and warn the operator of a coming shortage. " "__label__bug ""Could not locate shadow view"" warnings when resetting StackNavigator ### Current Behavior Recently, I added some logic to my app to reset a StackNavigator, but started seeing numerous ""Could not locate shadow view with tag"" warnings when the reset action was dispatched. I was able to reproduce these warnings by doing following: 1) Enable remote JS debugging (otherwise you won't see the warnings) 2) Create a StackNavigator with two routes (I name the initial one Main, and the one pushed on top Login) 3) Add at least one TextInput component to Login screen 4) Somewhere in Login screen (i.e. componentWillMount), call navigation.setParams(). What params you set are unimportant. 5) Use a reset action to dismiss Login, instead of navigation.goBack(). When the reset action is dispatched, I get a shadow view warning, for each TextInput. If there are 3 TextInput's, for example, I'll get three warnings. If remote JS debugging is not enabled, you will not see the warnings, but instead I tend to see the top screen (Login) flash briefly after it's transitioned out, probably the artifact that the warnings are trying to warn us about. I created a simple gist which combines all these steps: https://gist.github.com/jd20/b05fd748528c35a592fdfa6daa24a6af ![simulator screen shot - iphone 6 - 2017-12-25 at 01 37 55](https://user-images.githubusercontent.com/17896438/34337782-3a261af0-e917-11e7-8aaa-e86e323edd5b.png) ### Expected Behavior There should not be any warnings when dispatching the reset action. ### Your Environment | software | version | ---------------- | ------- | react-navigation | 1.0.0-beta.22 | react-native | 0.51.0 | node | 9.3.0 | npm or yarn | yarn 1.3.2 " "__label__enhancement [TW-137] add optional due time for tasks _Tomáš Čech on 2011-04-08T07:14:06Z says:_ Taskwarrior currently supports entering time in due but there is complication with showing task containing specified time. You can show all time for all tasks or for none, not only for the task with explicitly set time. But it really makes sense to support both task types: * buy milk - this is example of task you can do before work, on the way to lunch, after work and it doesn't need any time specification * write report till noon - for this task is due time important I would like to have posibility to distinguish between these tasks. That means to be able to enter due time optionally for task manipulation and show due time only when the time is specified. * +entering time:+ it is probably needed to introduce some characters like @ or braces to specify optional part of dateformat. entering time may be specified in this form (at sign and following is optional) (at)dateformat=D.M.y@H:N@ or more powerful - specify optional part by using braces (at)dateformat=D.M.y(-H:N)@ which could lead even to braces in braces like (at)dateformat=(D.(M.(y)))(-H:N)@ which is definitely short and comfortable way to enter due date/time. I'm also curious why here is introduced new way when there is (de facto) standard for entering time format and already implemented - strftime(). * +show due time only for tasks where it was entered+ New parameter can be introduced specifying that time is relevant. This unfortunately leads to change of CSV format and may prevent already implemented tools from corrent work. It is also possible to tell that no time specified means some exact time like 00:00 (which is currently set by default) (for next day?) but it's not clean and may cause some unexpected troubles." "__label__bug [TW-1076] color.due clobbered by color.alternate _Paul Beckingham on 2010-02-06T11:40:14Z says:_ When both color.due and color.alternate are used, the color.alternate prevails. What should happen is that color.alternate should be the lowest precedence color setting, and all others should be blended into it." "__label__bug Date and date-time validation types permit dates that are invalid The `date` and `datetime` validation types incorrectly allow candidate values that do not represent valid dates. For example, if a candidate value of ""2018-02-29T12:27:53.991-0800"" is received, the value will be allowed even though there is no February 29th in 2018 (it's not a leap year). Ensure that a candidate `date` or `datetime` value can be parsed by the built in `Date` object before accepting it." "__label__bug side dishes menu Only Thai Spring Roll, Khanom Jeeb, and Samruai Salad should be appeared on the side dishes menu" __label__bug Dashboard is blank in recents screen Probably because it's a dialog "__label__enhancement Forms should have charset set to utf-8 At present the form is submitted in the windows-1252 encoding which cannot encode all Unicode characters, so user input can get corrupted. Solution: Need to put `accept-charset=utf-8` attribute in the form tag." __label__bug [TW-1591] add an option to see non-pending project with command task summary _Pierre Campet on 2015-04-01T21:28:12Z says:_ __label__bug The @bletherhead link in README.md is broken The link is currently `https://github.com/bleatherhead`. It should be `https://github.com/bletherhead`. __label__enhancement Build the Courses Index page update the _courses index_ page with [CD101](https://github.com/CodeDocsJECRC/CD101) syllabus details and curriculum "__label__bug Register redirect After a successful register, the user is not informed and not redirected either. " __label__enhancement Win by X To win the player must exceed all other players' score by at least X points. "__label__enhancement network_error_code isn't parsed fixes https://github.com/K2InformaticsGmbH/mpro/issues/163 ![image](https://user-images.githubusercontent.com/913008/31112437-04a8338e-a814-11e7-989b-58f0c4d5e0ce.png) ```erlang > S = ""00 00 00 C3 00 00 00 05 00 00 00 00 00 00 00 01 00 01 01 31 31 31 31 31 31 31 31 31 31 31 00 00 "" ""01 31 31 31 31 00 04 00 00 00 00 00 00 00 00 7A 69 64 3A 31 34 38 39 37 32 34 32 31 32 20 73 75 "" ""62 3A 30 30 31 20 64 6C 76 72 64 3A 30 30 30 20 73 75 62 6D 69 74 20 64 61 74 65 3A 31 37 31 30 "" ""30 32 31 33 34 33 20 64 6F 6E 65 20 64 61 74 65 3A 31 37 31 30 30 32 31 33 34 34 20 73 74 61 74 "" ""3A 45 58 50 49 52 45 44 20 65 72 72 3A 30 30 36 20 74 65 78 74 3A 48 65 6C 6C 6F 20 57 6F 72 6C "" ""64 2C 20 49 27 6D 20 61 20 73 00 1E 00 09 35 38 43 42 36 33 33 34 00 04 23 00 03 03 00 06 04 27 "" ""00 01 03"". 10> smpp:unpack(S). Rec info not defined for type : network_error_code [{command_id,5}, {command_status,0}, {sequence_number,1}, {message_state,3}, {network_error_code,[]}, {receipted_message_id,""58CB6334""}, {service_type,[]}, {source_addr_ton,1}, {source_addr_npi,1}, {source_addr,""11111111111""}, {dest_addr_ton,0}, {dest_addr_npi,1}, {destination_addr,""1111""}, {esm_class,4}, {protocol_id,0}, {priority_flag,0}, {schedule_delivery_time,[]}, {validity_period,[]}, {registered_delivery,0}, {replace_if_present_flag,0}, {data_coding,0}, {sm_default_msg_id,0}, {short_message,""id:1489724212 sub:001 dlvrd:000 submit date:1710021343 done date:1710021344 stat:EXPIRED err:006 text:Hello World, I'm a s""}] 11> smpp:unpack_map(S). Rec info not defined for type : network_error_code #{command_id => 5,command_status => 0,data_coding => 0, dest_addr_npi => 1,dest_addr_ton => 0, destination_addr => ""1111"",esm_class => 4, message_state => 3,network_error_code => #{}, priority_flag => 0,protocol_id => 0, receipted_message_id => ""58CB6334"",registered_delivery => 0, replace_if_present_flag => 0,schedule_delivery_time => [], sequence_number => 1,service_type => [], short_message => ""id:1489724212 sub:001 dlvrd:000 submit date:1710021343 done date:1710021344 stat:EXPIRED err:006 text:Hello World, I'm a s"", sm_default_msg_id => 0,source_addr => ""11111111111"", source_addr_npi => 1,source_addr_ton => 1, validity_period => []} ```" "__label__bug actice call when connecting to car ## The problem Every time I connect my phone to my car handsfree system while wire is running in backgroud my car displays an ongoing call (and so mutes the radio), which does not happen. Now I can either stop that call, which has no destination or terminate wire. ## Environment * Wire version that exhibits the issue: 3.4.382 * Last Wire version that did not exhibit the issue (if applicable): * Android OS version used to run Wire: 6.0.1 * Is this a custom firmware or a stock one: Sony stock ROM * Mobile phone model/manufacturer: Sony Experia X3 * Mobile network type (EDGE/LTE/Wi-Fi/Offline): LTE ## Details Have wire running in backgroud, connect to Volkswagen Composition Media Radio System via bluetooth. Composition Media shows an active call as log as wire is loaded. ## Link to Debug logs Create a [GIST](https://gist.github.com) which is a paste of your Wire logs, and link them here. It is recommended to directly contact our [customer support](mailto:support@wire.com) and send the debug report by email, because it can potentially contain some private information, that you don't want to share to the public. ## How to send detailed debug report from Wire: 1. Go to Settings -> About 2. Tap ""Wire swiss GmbH"" 10 times 3. Reproduce your issue 4. Send the report from Settings -> Advanced -> Submit debug report 5. Go to Settings -> About 6. Tap ""Wire swiss GmbH"" 10 times again to disable detailed debug reports, because this slows down Wire Will do the next time in the car." "__label__enhancement Method getOptimalFormat() # Need to implement the get method getOptimalFormat() ```php <?php namespace Ddrv\Extra; interface PackInterface { /** * @param string $key * @param mixed $minimal * @param mixed $maximal * @return string */ public static function getOptimalFormat($key, $minimal, $maximal); } ``` This method should select the optimal format for the minimum and maximum values of the field. For example: ```php <?php $optimalFormat = \Ddrv\Extra\Pack::getOptimalFormat('articles', 100322, 100500); echo $optimalFormat; ``` Result: ```text Carticles:100000 ```" "__label__bug Provider kotlinx.coroutines.experimental.android.AndroidExceptionPreHandler not found We recently pushed VLC on beta, with some Kotlin code. And we see some users reporting this ClassNotFoundException Project configuration is: Kotlin version 1.2.21 Kotlinx version 0.21.2 Identified devices are: Acer GT-810 (rolex) Android 5.1 OnePlus One (A0001) Android 4.3 Xiaomi Redmi Note 4 (mido) Android 7.0 VLC gradle build files are [here](https://code.videolan.org/videolan/vlc-android/blob/2.9.0/build.gradle) and [here](https://code.videolan.org/videolan/vlc-android/blob/2.9.0/vlc-android/build.gradle) Concerned exception handler [here](https://code.videolan.org/videolan/vlc-android/blob/2.9.0/vlc-android/src/org/videolan/vlc/media/PlayerController.kt#L24). ``` kotlinx.coroutines.experimental.DispatchException: Unexpected exception running DispatchedContinuation[UI, org.videolan.vlc.gui.DiffUtilAdapter$internalUpdate$2@c13506a] at kotlinx.coroutines.experimental.DispatchedTask$DefaultImpls.run(Dispatched.kt:165) at kotlinx.coroutines.experimental.DispatchedContinuation.run(Dispatched.kt:25) at android.os.Handler.handleCallback(Handler.java:754) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:163) at android.app.ActivityThread.main(ActivityThread.java:6237) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:877) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767) at Android.MODEL(Redmi Note 4) at Android.VERSION(7.0) at Android.FINGERPRINT(xiaomi/mido/mido:7.0/NRD90M/V9.0.5.0.NCFMIEI:user/release-keys) Caused by: java.util.ServiceConfigurationError: kotlinx.coroutines.experimental.CoroutineExceptionHandler: Provider kotlinx.coroutines.experimental.android.AndroidExceptionPreHandler not found at java.util.ServiceLoader.fail(ServiceLoader.java:225) at java.util.ServiceLoader.-wrap1(ServiceLoader.java) at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:366) at java.util.ServiceLoader$1.next(ServiceLoader.java:448) at kotlinx.coroutines.experimental.CoroutineExceptionHandlerKt.handleCoroutineException(CoroutineExceptionHandler.kt:98) at kotlinx.coroutines.experimental.StandaloneCoroutine.onCancellation(Builders.kt:185) at kotlinx.coroutines.experimental.JobSupport.completeUpdateState$kotlinx_coroutines_core(Job.kt:718) at kotlinx.coroutines.experimental.JobSupport.updateState$kotlinx_coroutines_core(Job.kt:659) at kotlinx.coroutines.experimental.JobSupport.makeCompletingInternal$4cfcfd05(Job.kt:1051) at kotlinx.coroutines.experimental.JobSupport.makeCompletingOnce$kotlinx_coroutines_core$4cfcfd16(Job.kt:1037) at kotlinx.coroutines.experimental.AbstractCoroutine.resumeWithException(AbstractCoroutine.kt:48) at kotlin.coroutines.experimental.jvm.internal.CoroutineImpl.resume(CoroutineImpl.kt:53) at kotlinx.coroutines.experimental.DispatchedTask$DefaultImpls.run(Dispatched.kt:161) at kotlinx.coroutines.experimental.DispatchedContinuation.run(Dispatched.kt:25) at android.os.Handler.handleCallback(Handler.java:754) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:163) at android.app.ActivityThread.main(ActivityThread.java:6237) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:877) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767) Caused by: java.lang.ClassNotFoundException: kotlinx.coroutines.experimental.android.AndroidExceptionPreHandler at java.lang.Class.classForName(Native Method) at java.lang.Class.forName(Class.java:400) at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:364) ... 18 more Caused by: java.lang.ClassNotFoundException: Didn't find class ""kotlinx.coroutines.experimental.android.AndroidExceptionPreHandler"" on path: DexPathList[[zip file ""/data/app/org.videolan.vlc-2/base.apk""],nativeLibraryDirectories=[/data/app/org.videolan.vlc-2/lib/arm64, /data/app/org.videolan.vlc-2/base.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64]] at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56) at java.lang.ClassLoader.loadClass(ClassLoader.java:380) at java.lang.ClassLoader.loadClass(ClassLoader.java:312) ... 21 more ```" __label__enhancement Project structure and initialization - [ ] LICENSE file - [ ] README file - [ ] Skeleton Symfony 3.4 - [ ] Add dependencies - [ ] doctrine/doctrine-fixtures-bundle - [ ] doctrine/doctrine-migrations-bundle - [ ] knplabs/knp-paginator-bundle - [ ] symfony/webpack-encore-pack - [ ] liip/imagine-bundle (See if the bundle is allowed) - [ ] Create bundle to this project - [ ] User - [ ] Blogpost - [ ] Comment - [ ] Media __label__enhancement Get assignment of a consumer Method to get the current assignment of a consumer. `assignment` in librdkafka. "__label__bug Custom method not referenced in generated test code Question I am trying to use custom method for a multipart parameter value as follows ```groovy request { method 'POST' url('/some/url') multipart( username: $( c('someusername'), p(execute('getUsername()'))), password: 'tester' ) } ``` However the generated test code does not refer to the custom method but inserts the method name as literal string ```java MockMvcRequestSpecification request = given() .param(""username"", ""getUsername()"") .param(""password"", ""tester""); ``` Could you please advise what I am doing wrong " "__label__bug Test status is not shown ETS lists all the tests that need to execute but does not show the test status (pass/fail) * Production (http://cite.opengeospatial.org/teamengine, ETS WMS Client 1.3.0, v1.2, TEAM Engine 4.10) ![wms_client_test](https://user-images.githubusercontent.com/4108977/34785750-eeac9a54-f5e6-11e7-87a5-ace91fe935fd.png) * On a in-house server hosting the same version as the production the test result never updates: ![wms_client_test_enterprise](https://user-images.githubusercontent.com/4108977/34786007-9fdb2034-f5e7-11e7-910f-7e53ac1d816b.png) * After I stop the test execution, I get this result with no other information: ![wms_client_test_enterprise1](https://user-images.githubusercontent.com/4108977/34786076-de88ce12-f5e7-11e7-88c2-111294599e51.png) (Original issue: https://github.com/opengeospatial/teamengine/issues/301) " __label__enhancement Parser: Implement <descriptorParam> http://handbook.ncl.org.br/doku.php?id=descriptor&s[]=descriptorparam "__label__enhancement Allow minimum volume to be adjusted Currently minimum volume if a default volume is not set on the ""Configure Defaults"" page is 50%. This is arbitrary and the end-user needs to be able to set this to 5% or 100% if they want. " __label__enhancement Add Attributes and Enumerated References extensions to DocxConverter supported extensions. These extensions are needed for cross-reference links in DOCX format. __label__bug Make White Cards Wider There are currently scrollbars on the inside of some - doesn't look right. "__label__bug Need to provide meta description for Exhibitions to avoid unwanted concatenation of whole body ## Type - 🐛 Bug Reported by @derivadow : If you look at Can Graphic Design Save your life the meta description is: ` <meta name=""description"" content=""Comprising over 200 objects including hard-hitting posters, illuminated pharmacy signs and digital teaching aids, 'Can Graphic Design Save Your Life?' considers the role of graphic design in constructing and communicating healthcare messages around the world, and shows how graphic design has been used to persuade, to inform and to empower.This exhibition highlights the widespread and often subliminal nature of graphic design in shaping our environment, our health and our sense of self. Drawn from public and private collections around the world, it will feature work from influential figures in graphic design from the 20th century, as well as from studios and individual designers working today.'Can Graphic Design Save Your Life?' is curated by graphic designer Lucienne Roberts and design educator Rebecca Wright, founders of publishing house GraphicDesign&, with Shamita Sharmacharja at Wellcome Collection.Please see our advice for visiting during busy times"" />` But the Promo text in Prismic is: Explore how graphic design affects your health i.e. the template isn’t using the right field and appear to be concatenating multiple fields instead. This is particularly problematic because if a meta description is over 160 characters Google ignores it and grabs whatever text it thinks works best. Hence the unhelpful descriptions on the SERP. ## To Do - [ ] Prismic to allow editors to create meta description - [ ] Editors to be shown how to create meta description @dannybirchall FYI " "__label__enhancement [TW-1660] Disabled sorting option _David Patrick on 2015-08-18T16:55:16Z says:_ NOTE: while initially for an agenda report, this issue should be considered a generic option with many uses. In an attempt to produce an agenda report, that blends sched, due and until dates, based on the following precedence; sched:date if exist, else due:date if exists, else until:date if exists. This is important for the schedule attribute to be used *with* due and until date, but this won't work; report.agenda.sort=sched+,due+,until+ because that will make a list with 3 blocks, non-chronologically ordered. Instead, this RFE seeks a lamda-sorting option, that will use the first value found in the lamda-set, as the ""effective value"". For an agenda, that might look like this; report.agenda.sort=(sched,due,until)+ caveat: values in a lamda-set must all be of the same type, not apples and oranges. " __label__enhancement update guzzle dependency to guzzlehttp __label__question Add a non sticky header element I want to display a viewpager always as the first element of the recycler view and then a list of elements after the viewpager but i do not want the viewpager to be sticky. Is it possible to do such a thing with the adapter. "__label__question Google Java Format Is there a way to setup formatting with [Google Java Format](https://github.com/google/google-java-format)? Or an entirely new extension is needed which will run the `jar` formatter on opened file? If so, what would be the best way to implement this as an extension, e.g running external `jar`?" __label__enhancement Add icon for Circle-CI build status __label__bug 게시글 열람 기능 추가 - [ ] 액션/리듀서 작성 - [ ] 썽크 작성 - [ ] 데이터 구조 설계 - [ ] 컨테이너 "__label__bug B2 Inconsistency in the initial message Just noticed this. Exact text upon mining the first vis shard: ""**Your** fingers tingle strangely as **you** handle the crystal. What does that mean? Maybe some rest will inspire **me**."" Those aren't consistent, and it's slightly jarring. ""me"" should be ""you""...?" __label__question How to host multiple slide decks? Based on the examplesite it looks like all files in content contribute to a single slide deck. Would one create a new hugo site per slide deck under your current thinking? "__label__bug do not collect function definitions for non-compilable files cc_bin/clang-func-mapping should not collect function definitions from files that cannot be compiled with clang, since for these ast-dumps cannot be created. These missing ast-dump files will cause error ANALYZE (CTU loaded AST for source file): /local/scratch/ednikru/ws_wd1_atestrun/reports/ctu-dir/powerpc/ast/local/scratch/ednikru/ws_wd1_atestrun/UehBaseAuxTopBlPkg_target/UehImsiD.cpp fatal error: AST file '/local/scratch/ednikru/ws_wd1_atestrun/reports/ctu-dir/powerpc/ast/local/scratch/ednikru/ws_wd1_atestrun/UehBaseUehUeCtxtSsLU_target/UehDUeCtxtD.cpp.ast' not found: module file not found ANALYZE (CTU loaded AST for source file): /local/scratch/ednikru/ws_wd1_atestrun/reports/ctu-dir/powerpc/ast/local/scratch/ednikru/ws_wd1_atestrun/UehBaseUehUeCtxtSsLU_target/UehDUeCtxtD.cpp /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN4llvm3sys15PrintStackTraceERNS_11raw_ostreamE+0x1a)[0x1c8f92a] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN4llvm3sys17RunSignalHandlersEv+0x3e)[0x1c8d8ae] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0[0x1c8d9d2] /lib64/libpthread.so.0[0x329920f500] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang7tooling20CrossTranslationUnit20getCrossTUDefinitionEPKNS_12FunctionDeclEN4llvm9StringRefES6_S6_b+0x1a71)[0x2c3cff1] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZNK5clang4ento15AnyFunctionCall20getRuntimeDefinitionEv+0xfb)[0x2b723db] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZNK5clang4ento15CXXInstanceCall20getRuntimeDefinitionEv+0x8b)[0x2b7335b] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZNK5clang4ento13CXXMemberCall20getRuntimeDefinitionEv+0x3a)[0x2b736ba] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10ExprEngine15defaultEvalCallERNS0_11NodeBuilderEPNS0_12ExplodedNodeERKNS0_9CallEventE+0x37a)[0x2bd5bfa] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento14CheckerManager22runCheckersForEvalCallERNS0_15ExplodedNodeSetERKS2_RKNS0_9CallEventERNS0_10ExprEngineE+0x3be)[0x2b7edbe] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10ExprEngine8evalCallERNS0_15ExplodedNodeSetEPNS0_12ExplodedNodeERKNS0_9CallEventE+0xf0)[0x2bc9510] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10ExprEngine13VisitCallExprEPKNS_8CallExprEPNS0_12ExplodedNodeERNS0_15ExplodedNodeSetE+0x1c0)[0x2bc9730] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10ExprEngine5VisitEPKNS_4StmtEPNS0_12ExplodedNodeERNS0_15ExplodedNodeSetE+0x401)[0x2bb81a1] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10ExprEngine11ProcessStmtENS_7CFGStmtEPNS0_12ExplodedNodeE+0x1fc)[0x2bb9eac] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10ExprEngine17processCFGElementENS_10CFGElementEPNS0_12ExplodedNodeEjPNS0_18NodeBuilderContextE+0xfc)[0x2bba0dc] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10CoreEngine14HandlePostStmtEPKNS_8CFGBlockEjPNS0_12ExplodedNodeE+0x5a)[0x2b87e9a] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10CoreEngine16dispatchWorkItemEPNS0_12ExplodedNodeENS_12ProgramPointERKNS0_12WorkListUnitE+0x18c)[0x2b8803c] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang4ento10CoreEngine15ExecuteWorkListEPKNS_15LocationContextEjN4llvm18IntrusiveRefCntPtrIKNS0_12ProgramStateEEE+0x19b)[0x2b8896b] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0[0x28b7782] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0[0x28b8251] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0[0x28c8f6f] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang17MultiplexConsumer21HandleTranslationUnitERNS_10ASTContextE+0x28)[0x21fa9d8] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang8ParseASTERNS_4SemaEbb+0x2e8)[0x2ca1928] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang14FrontendAction7ExecuteEv+0xf6)[0x21cbdf6] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang16CompilerInstance13ExecuteActionERNS_14FrontendActionE+0x136)[0x219b5b6] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_ZN5clang25ExecuteCompilerInvocationEPNS_16CompilerInstanceE+0xd8b)[0x2266bbb] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(_Z8cc1_mainN4llvm8ArrayRefIPKcEES2_Pv+0x9f8)[0x82a978] /local/scratch/ednikru/CodeChecker/cc_bin/clang-5.0(main+0x18bb" __label__enhancement Can support the unix domain socket? Can support the unix domain socket? __label__enhancement Dynamic background painting while zooming Dynamically paint background while map is zooming. Make zooming seamless. "__label__bug opal/asm changes causes MT applications hang. I did a rebase to master head from a version from October and I found that some of the multithreaded applications I use get deadlock when the program is initialized with `THREAD_MULTIPLE` with more than 1 thread doing communication. (1 is fine) I did a bisection and it seems to start from the commit 84f63d0aca from @hjelmn . I dug a little bit deeper and found that it might be the problem from `opal_free_lifo_pop_atomic()`. This is the stack from a typical MT ping-ping injection rate. It looks like the `item_free` field is always 1 although it is the only thread trying to do the pop. ```c #0 opal_lifo_pop_atomic (lifo=0x7ffff7dda780 <mca_pml_base_recv_requests>) at ../../../../opal/class/opal_lifo.h:247 247 if (opal_atomic_swap_32((volatile int32_t *) &item->item_free, 1)) { (gdb) bt #0 opal_lifo_pop_atomic (lifo=0x7ffff7dda780 <mca_pml_base_recv_requests>) at ../../../../opal/class/opal_lifo.h:247 #1 0x00007fffe2f37002 in opal_free_list_get_mt (flist=0x7ffff7dda780 <mca_pml_base_recv_requests>) at ../../../../opal/class/opal_free_list.h:193 #2 0x00007fffe2f370ec in opal_free_list_get (flist=0x7ffff7dda780 <mca_pml_base_recv_requests>) at ../../../../opal/class/opal_free_list.h:222 #3 0x00007fffe2f38537 in mca_pml_ob1_recv (addr=0x7fffd00008c0, count=1, datatype=0x603360 <ompi_mpi_byte>, src=1, tag=2, comm=0x603160 <ompi_mpi_comm_world>, status=0x7fffdfa04dc0) at pml_ob1_irecv.c:121 #4 0x00007ffff7ae5e84 in PMPI_Recv (buf=0x7fffd00008c0, count=1, type=0x603360 <ompi_mpi_byte>, source=1, tag=2, comm=0x603160 <ompi_mpi_comm_world>, status=0x7fffdfa04dc0) at precv.c:79 #5 0x000000000040150a in thread_work (info=0x902fd0) at pairwise.c:193 #6 0x00007ffff7815e25 in start_thread () from /usr/lib64/libpthread.so.0 #7 0x00007ffff754334d in clone () from /usr/lib64/libc.so.6 ``` Another application that has the same problem is [GRID](https://github.com/paboyle/Grid). The threaded-stencil benchmark deadlocks but `thread-test` from `ompi-tests` seems to run without problems. OS: Red Hat Scientific Linux release 7.3 Any suggestion? " __label__enhancement Do file deletions in parallel for better performance on large solutions "__label__bug since tf_model_dir is hardcoded as a full path, moving the directory, or transferring to a different computer breaks everything. maybe use relative paths? " "__label__enhancement Editor_settings/Interface/Scene_Tabs/Restore_Scenes_On_Load should be enabled by default <!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> Related to #15499 **Godot version:** <!-- Specify commit hash if non-official. --> Godot 3 stable win 7 **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> **Issue description:** <!-- What happened, and what was expected. --> Godot remember recent script list, but not opened scenes. It always starts in 3d editor (project doesn´t have any 3d scene) **Steps to reproduce:** Close a project with open scenes and reopen **Minimal reproduction project:** <!-- Recommended as it greatly speeds up debugging. Drag and drop a zip archive to upload it. --> " "__label__bug Issues with Milestones / Challenges While going through the milestone endpoint stuff I noticed that almost all the `challenges` lists are empty, except that of Nightfall. Another problem I discovered is that the public endpoint only lists 1 of the 3 meditations." __label__enhancement suppress CLI output on success It would be nice to provide an option to surpress cli output on success. Like `--silent` Related: there is presently no option to disable the red logo. "__label__bug Set permissions for editor and moderation role Both roles need more permissions, e.g. for using the georeport endpoint." "__label__enhancement [TW-1001] minor quibble: message feedback from multiple events _t charles yun on 2010-10-12T08:47:40Z says:_ a suggestion for a *really* minor item... when you mark multiple items ""done"" task will prompt Yes/No/All/quit. If you manually type Yes (or whatever) for each, there is a blank line printed after each entry. However, for the last item, there is no blank line and then you get a report back of the decisions made. I have on more than one occasion looked twice at the final block of text and realized that it might be nice to have another blank line between the final ""Yes"" and the report-back text. what happens now <pre> $ task 350,351,352 done Task 350 ""a"" - end will be set to '2010/10/12' - status will be changed from 'pending' to 'completed' Proceed with change? (Yes/no/All/quit) Yes Task 351 ""b"" - end will be set to '2010/10/12' - status will be changed from 'pending' to 'completed' Proceed with change? (Yes/no/All/quit) Yes Task 352 ""c"" - end will be set to '2010/10/12' - status will be changed from 'pending' to 'completed' Proceed with change? (Yes/no/All/quit) Yes Completed 350 'a' Completed 351 'b' Completed 352 'c' Marked 3 tasks as done </pre> what i suggest <pre> $ task 350,351,352 done Task 350 ""a"" - end will be set to '2010/10/12' - status will be changed from 'pending' to 'completed' Proceed with change? (Yes/no/All/quit) Yes Task 351 ""b"" - end will be set to '2010/10/12' - status will be changed from 'pending' to 'completed' Proceed with change? (Yes/no/All/quit) Yes Task 352 ""c"" - end will be set to '2010/10/12' - status will be changed from 'pending' to 'completed' Proceed with change? (Yes/no/All/quit) Yes >> proposing a blank line here << Completed 350 'a' Completed 351 'b' Completed 352 'c' Marked 3 tasks as done </pre> - tcy (looking forward to 1.9.3)" __label__bug calls resolve by split reads should remove strand if the evidence type is unstranded Was not resetting the strand to NS for unstranded calls. This was resulting in multiple calls being retained and the resolution not being used. Will also add support for multiple split read resolutions "__label__bug sql: group by returning unexpected results for example ```sql select state, count(airport) from airports group by state ``` yielded |state | count| |------------ | -------------| |341 | | " "__label__enhancement Handle ssl source options for VCenter ## Specify type: - Enhancement ## Description: VCenter connectivity currently uses `SmartConnectNoSSL` to avoid the issue with our current VCenter where the SSL certifcate isn't validated. We need to add options to allow users to specify whether to enable this or use `SmartConnect` with an `sslContext`, like this [sample](https://github.com/vmware/pyvmomi-community-samples/blob/836eddf1586a917710d4dcf2ab631fb6c1e45699/samples/list_datastore_info.py#L97). The new source options to be supported should be `vc_ssl_protocol`, and `vc_disable_ssl`. Defaults should be as follows for a `vcenter` source type: - ssl_protocol = None - disable_ssl = None If `ssl_cert_verify` is `False` and `ssl_protocol` are default values than no `sslContext` needs to be passed to `SmartConnect` (i.e just use its defaults) `ssl_protocol` choices can be seen [here](https://docs.python.org/3/library/ssl.html#ssl.PROTOCOL_SSLv23), and should be modeled as a choice option in the code with `null=True` and no default. If a user sets `disable_ssl` to True we can use the existing `SmartConnectNoSSL`. CLI flags should be as follow: `--disable-ssl` will be true/false, default false `--ssl-protocol=<protocol>` help should list the valid strings that match the choice model. " "__label__bug [1.10.2] chisels and bits crash with certain conquest reforged blocks * MC Version: 1.10.2 * C&B Version: 12.16 * Do You have Optifine: yes some blocks in conquest reforged are causing a crash when used with chisels and bits, but only if the block his held and is visible in the inventory. the block ive used to test and replicate this crash is conquest:stone_log_1[variant=bravo] it seems to affect blocks that act like logs which can be placed at different orientations, ive tested a few log type blocks. though it only happens if you place the block horizontally, chisel it then middle click it to get it into your inventory. if the block is placed vertically, it doesnt crash. client crash log: https://pastebin.com/PdRfWCgT server also spits out an error but doesnt crash the server: https://pastebin.com/ecy9Tt0Q" __label__bug Bug -closed "__label__question Modal dialog doesn't open from event listener on element on android modal dialog doesn't open right if it comes from a listening on any kind of `GestureTypes`. example: ``` public userLoaded(member: User, args) { args.object.on(GestureTypes.longPress, () => { this.openUserLongPressMenu(member); // should open simple modal page }); } ``` thanks :)" "__label__enhancement [TW-389] unicode symbol support for indicators, labels, projects and tags _David Patrick on 2013-08-13T17:48:20Z says:_ Buried deep in the unicode character sets there are a few groups of symbols that could be used to enhance and condense task listings. miscellaneous symbols http://www.unicode.org/charts/PDF/U2600.pdf miscellaneous symbols and pictograms http://www.unicode.org/charts/PDF/U1F300.pdf and dingbats http://www.unicode.org/charts/PDF/U2700.pdf _caveat: these characters won't look anything like this in your terminal, and many if not most of them won't display at all, depending on your installed console font etc. etc._ _.. But some of them will work great! Your mileage will definitely vary!_ This feature request seeks to outline an easy way that these unicode characters could be defined and deployed for extra spice that uses less space. The definition and deployment closely resembles how tw currently handles ""indicators"", the character that can represent active, dependent, recurring or with tags. Symbols can be used as indicators by defining them in .taskrc, just like regular characters are used now, but allowing a) an extended character, as entered by special keybinding or cut-and-paste or b) a code that represents a unicode character, ""U+hex"" as in ""U+267A"" active.indicator=U+2730 dependency.indicator=U+2799 recurrent.indicator=U+267A tag.indicator=U+26C9 Symbols for tags, projects or labels are defined in a similar manner , but unlike indicators, those symbols are defined per value, not per attribute, as in; tag.symbol.calls=U+2706 project.symbol.work=U+26CF label.symbol.command=U+26EF The symbol display format will substitute the symbol for the word where defined, but will happily mix symbols with the names of un-defined projects and tags too. If you want all symbols, you'll have to create a symbol definition for each. These symbols are used as indicators, when defined as such. For projects and tags a new column format ""symbol"" is used in defining a report, so tag and project symbols will only be seen in reports that call for them. report.ls.columns=id,project.symbol,tag.symbol,priority,description.desc and label.symbol.Notes=U+2710, if defined, the symbol will be displayed at the beginning of any annotation with a Notes: label, instead of the text, in all reports. These symbols are for display only, and have no affect on queries or values, and you may be looking at a little phone icon, but you still have to type ""+calls"". Using them will take off some of the visual pressure of a big list, by engaging the pictogram part of your brain, and often taking up much less column-width." "__label__bug LCAO test issues - [x] short-FeCO6_gms-vmc_b3lyp_noj, softlink to the BFD.xml are missing. - [x] short-FeCO6_pyscf-vmc_b3lyp are too long, as well as _gms https://cdash.qmcpack.org/CDash/testSummary.php?project=1&name=short-FeCO6_pyscf-vmc_b3lyp_noj-1-16&date=2018-01-13 - [x] enable failing check for AoS pyscf tests - [x] there is a bug in hdf5 file or converter. https://cdash.qmcpack.org/CDash/testDetails.php?test=1430956&build=17119 rid is not correct, should be ""Li101"" This is caught by the added check after expandYlm. ``` h5ls -d LiH_dimer_ae_pyscf/LiH-pyscf.h5/basisset/atomicBasisSet0/basisGroup10/rid l Dataset {1} Data: (0) 1 n Dataset {1} Data: (0) 10 rid Dataset {1} Data: (0) ""Li10"" ``` - [x] In tests/converter/test_LiH_pyscf, remove LiH.h5 since is carries the previous problem. Replace it with a softlink when the previous one is fixed. - [ ] AB- Does not apply (using cartesian orbitals in the Gamess order- hence the specification) h5ls -d FeCO6.h5/basisset/atomicBasisSet0 ``` expandYlm Dataset {1} Data: (0) ""Gamess"" ```" "__label__bug MessageInputStream should only cache payloads if mark is active MessageInputStream stores all processed payloads inside a payload buffer to support the mark/reset functionality. However it should only be necessary to do so if the mark is active. With the current code, if the mark is never used, the payloads will be stored indefinitely even if the caller has read past the payload data. This may lead to excessive memory usage even during normal operation where the application is reading small portions of data as quickly as it comes in. Change the logic so the payload buffer is only used while the mark is active, which will limit the cached memory usage to the application's use of mark/reset and the specified readlimit." __label__enhancement prevent overwriting existing files "__label__enhancement There are certain accounts that are unscrapable I tried https://twitter.com/kimdotcom to test the installation, and it certainly works. However, https://twitter.com/a_fellow_white does not (flagged as""sensitive content"") When I try to search his tweets, unless I am logged in, none of his tweets will show up. " "__label__bug CSV output shall encode `""` At the moment the symbol `""` is not escaped and break the whole file" __label__bug Auto-refresh character editor if the game changes values itself (eg by the player equipping another weapon) the values displayed in the editor will stay outdated "__label__bug Stop renaming of town before previous rename is complete Originally reported on Google Code with ID 2158 ``` What steps will reproduce the problem? 1.Rename a town 1 or more times 2. 3. What is the expected output? : Name change What do you see instead? : Namechange + a default 100(money) all other money is gone What is your Towny version number? : Using the dev build 0.88.0.1 What is your TownyChat version number? : What is your Bukkit version number? : I am using spigot git-Spigot-1622 (MC: 1.7.10) (Implementing API version 1.7.10-R0.1-SNAPSHOT) What operating system? : Linux CentOS 6 Please use pastebin.com to link the following files: - Your full server startup from server.log, http://paste.ubuntu.com/8397385/ - Your towny config.yml (if using MySQL please remove pasword,) http://paste.ubuntu.com/8397405/ - Your townyperms.yml, http://paste.ubuntu.com/8397415/ - Your permissions file. http://paste.ubuntu.com/8397418/ In the case of chat-issues please link your: - Chatconfig.yml - Channels.yml Skipping these files is not an option. It is the easiest way to diagnose an issue ticket properly. If you do skip this step then your ticket will most likely be deleted and you will be asked to resubmit. ``` Reported by `arjan1992@hotmail.com` on 2014-09-21 17:24:12 " "__label__enhancement Does the standard API not support labels? If not, we should consider having these in the core GA4GH API. " "__label__bug Phan language server should allow to re-analyze only on save For my codebase (thousands of files from random libraries) it takes a couple seconds to analyze the new files. Phan can't keep up when I'm typing and lags the computer. It would be great if there was an option to only re-analyze on file saves instead of on file changes. I hacked the repo in my vs code extensions folder to do this real quickly and it handles it much better. I don't know the codebase too well and how settings are passed in from the various clients to the server, sadly, so I don't know the proper way to enable this as an option." __label__bug Overlapping info text in the navdrawer header ![screenshot_2017-11-12-05-51-02](https://user-images.githubusercontent.com/1439229/32696064-24e39aca-c76e-11e7-90fb-34d814e7c514.png) "__label__bug Issue with looseApplication = false? I noticed an issue with installing the app as ```looseApplication= false``` (using 2.0.1 and Gradle 4.3.1): ``` server { ... looseApplication= false } ``` Basically ```installApp``` task fails with : ``` java.nio.file.NoSuchFileException: C:\temp\gitlab\recres\recres-webapp\build\libs\recres-webapp-1.0.0-SNAPSHOT.war -> C:\temp\gitlab\recres\recres-webapp\build\wlp\usr\servers\recres_server\apps\recres-webapp.war ``` . The workaround I found was to first deploy with ```looseApplication= true``` then manually go and delete the generated XML app file in the server, and then switch back to ```looseApplication= false``` Has anyone else seen this issue?" __label__bug Fix issue with Spanish channel not sending messages to the Discord channel. __label__enhancement Add a prefix with the site name ? For SEO improvement we could add the site prefix to filenames. More advices for continuing. "__label__bug Error: Maximum call call stack size exceeded When I add a Transformation to an Image, the equals function deep compares all the props in `shouldComponentUpdate`. This causes a cycle in React 16 with `_owner`. cloudinary-react 1.0.4, React 16. ![image](https://user-images.githubusercontent.com/740978/33314280-7404be7e-d42d-11e7-8332-a57b00f812f2.png) I will provide a workaround as a PR until there is official support for React 16." "__label__bug We should await transaction confirmation before sending the HTTP response. ### Description Currently we send the response right away, which makes it impossible to await the response correctly." "__label__question Adatmodell módosítások - megbeszélendő Ez egy átgondolás-in-progress jellegű issue - csoportok kezelése, csoportcseréhez? - több fájlos feltöltéskor primary deliverable kijelölése, az vinné a javítói megjegyzést stb. " "__label__bug Sending emailLog Sending emailLog throwing error if default mail client is not installed or in iCloud settings permission to mail client is disabled. ## Your Environment * Plugin version: 2.10.1 * Platform: iOS * OS version: 11.2.1 * Device manufacturer / model: iphone SE * React Native version (`react-native -v`): 0.52.1 * Plugin config ``` { desiredAccuracy: 0, distanceFilter: parseInt(await LocalStorage.getItem('interval')), // distanceFilter: 5, // HTTP / SQLite config method: 'POST', url: AppConfig.API.postCoords, // debug: true, // logLevel: BackgroundGeolocation.LOG_LEVEL_VERBOSE, autoSync: true, // Set true to sync each location to server as it arrives. stopOnTerminate: false, preventSuspend: true, startOnBoot: startOnBoot, httpRootProperty: '.', locationTemplate: '{""latitude"":<%= latitude %>, ""longitude"":<%= longitude %>, ""accuracy"":<%= accuracy %>}', extras: { id: driverId, auth_key: token }, maxRecordsToPersist: 1, // Disable persisting to db, store only last coords. } ``` ## Expected Behavior Tell to the user that it is not possible without default mail app and permission into icloud settings. ## Actual Behavior App crashing without any errors. ## Steps to Reproduce 1. Run app 2. Call emailLog method. ## Context Call ""emailLog"" method without default mail app, or with disabled mail permission in iCloud settings. ## Debug logs `2018-01-27 17:58:05.100788+0200 myApp[3123:2787395] [] nw_connection_get_connected_socket 27 Connection has no connected handler 2018-01-27 17:58:05.100868+0200 myApp[3123:2787395] TCP Conn 0x1c0174700 Failed : error 0:61 [61] 2018-01-27 17:58:06.602640+0200 myApp[3123:2787593] [MC] Filtering mail sheet accounts for bundle ID: com.app.my, source account management: 1 2018-01-27 17:58:06.658411+0200 myApp[3123:2787325] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Application tried to present a nil modal view controller on target <UIViewController: 0x151d183f0>.' *** First throw call stack: (0x1850b2364 0x1842f8528 0x18e90d148 0x18e90f800 0x18e90fd34 0x18e90f750 0x18e671388 0x10512128c 0x105133c38 0x10512128c 0x105125ea0 0x18505a544 0x185058120 0x184f77e58 0x186e24f84 0x18e5f767c 0x1046424f8 0x184a9456c) libc++abi.dylib: terminating with uncaught exception of type NSException (lldb) `" "__label__bug Feature and Scenario Description in generation of features files ### Expected behavior Given I have a description for Feature or Scenario in my **.feature** file When new feature files are generated in parallel.features folder Then I will see the Feature description And I will see the Scenario description ### Actual behavior when new feature files are generated in parallel.features folder, the process doesn't import descriptions bellow Feature and Scenario tags ### Reproduction steps If I have a file.feature like bellow > Feature: this is my feature titlr > **This is my description from feature** > > Scenario: This is my scenario title > **This is my description from Scenario** > Given aaaaaaa > When bbbbbbb > Then cccccccc when the title_scenario001_run001_IT.feature is generated the content is: > Feature: this is my feature title > > > Scenario: This is my scenario title > > Given aaaaaaa > When bbbbbbb > Then cccccccc And cucumber report .json will be generated with an empty description (""description"":"""") ### Additional details (Maven version, Java version, etc.) Cucacle: <groupId>com.trivago.rta</groupId> <artifactId>cucable-plugin</artifactId> <version>0.0.8</version> Apache Maven 3.3.9 Java version: 1.8.0_121, vendor: Oracle Corporation " "__label__question @EnableTurbineStream Configuration Support Request I followed the directions at http://cloud.spring.io/spring-cloud-netflix/spring-cloud-netflix.html in an attempt to startup a Turbine Stream instance. My associated toolset is consul and kafka. My hystrix service contains the following dependency: ```xml <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-netflix-hystrix-stream</artifactId> </dependency> ``` which creates the 'hystrixStreamOutput' kafka topic. As noted below 'springCloudHystrixStream' is also created as a result of starting the Turbine Stream server. ```shell $ ./kafka-topics.sh --list --zookeeper localhost:2181 __consumer_offsets hystrixStreamOutput springCloudHystrixStream ``` I basically copied the code from turbine/src/main/java/turbine/TurbineApplication.java. Here are the highlights: pom.xml ```xml <?xml version=""1.0"" encoding=""UTF-8""?> <project xmlns=""http://maven.apache.org/POM/4.0.0"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xsi:schemaLocation=""http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd""> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>TurbineSteam</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>TurbineSteam</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-parent</artifactId> <version>Camden.BUILD-SNAPSHOT</version> <relativePath /> <!-- lookup parent from repository --> </parent> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <!--skip deploy (this is just a test module) --> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-turbine-stream</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-stream-kafka</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> <repositories> <repository> <id>spring-snapshots</id> <name>Spring Snapshots</name> <url>https://repo.spring.io/libs-snapshot-local</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone-local</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>spring-releases</id> <name>Spring Releases</name> <url>https://repo.spring.io/libs-release-local</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>spring-snapshots</id> <name>Spring Snapshots</name> <url>https://repo.spring.io/libs-snapshot-local</url> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone-local</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project> ``` ```yml bootstrap.yml spring: application: name: turbine application.yml info: component: Turbine endpoints: restart: enabled: true shutdown: enabled: true server: port: ${PORT:8989} management: port: 8990 logging: level: root: INFO com.netflix.discovery: 'OFF' # org.springframework.integration: DEBUG --- spring: profiles: cloud management: port: -1 ``` ```java TurbineStreamApplication.java 'package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.turbine.stream.EnableTurbineStream; @SpringBootApplication @EnableTurbineStream public class TurbineSteamApplication { public static void main(String[] args) { SpringApplication.run(TurbineSteamApplication.class, args); } } ``` I tried different variations of the url as instructed: localhost:8989, etc..., but I'll I get is: `data: {""type"":""Ping""}` Logs: ``` 2017-07-21 15:58:08.504 INFO 34939 --- [o-eventloop-3-3] o.s.c.n.t.s.TurbineStreamConfiguration : SSE Request Received 2017-07-21 15:58:08.504 INFO 34939 --- [o-eventloop-3-4] o.s.c.n.t.s.TurbineStreamConfiguration : SSE Request Received 2017-07-21 15:58:15.228 INFO 34939 --- [o-eventloop-3-2] o.s.c.n.t.s.TurbineStreamConfiguration : Unsubscribing RxNetty server connection 2017-07-21 15:58:15.228 INFO 34939 --- [o-eventloop-3-1] o.s.c.n.t.s.TurbineStreamConfiguration : Unsubscribing RxNetty server connection 2017-07-21 15:58:23.232 INFO 34939 --- [o-eventloop-3-1] o.s.c.n.t.s.TurbineStreamConfiguration : SSE Request Received 2017-07-21 15:58:45.228 INFO 34939 --- [o-eventloop-3-3] o.s.c.n.t.s.TurbineStreamConfiguration : Unsubscribing RxNetty server connection 2017-07-21 15:58:45.228 INFO 34939 --- [o-eventloop-3-4] o.s.c.n.t.s.TurbineStreamConfiguration : Unsubscribing RxNetty server connection 2017-07-21 15:58:48.511 INFO 34939 --- [o-eventloop-3-4] o.s.c.n.t.s.TurbineStreamConfiguration : SSE Request Received 2017-07-21 15:30:09.302 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Registering beans for JMX exposure on startup 2017-07-21 15:30:09.303 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Registering MessageChannel nullChannel 2017-07-21 15:30:09.305 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Located managed bean 'org.springframework.integration:type=MessageChannel,name=nullChannel': registering with JMX server as MBean [org.springframework.integration:type=MessageChannel,name=nullChannel] 2017-07-21 15:30:09.315 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Registering MessageChannel errorChannel 2017-07-21 15:30:09.317 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Located managed bean 'org.springframework.integration:type=MessageChannel,name=errorChannel': registering with JMX server as MBean [org.springframework.integration:type=MessageChannel,name=errorChannel] 2017-07-21 15:30:09.473 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Registering MessageChannel turbineStreamInput 2017-07-21 15:30:09.474 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Located managed bean 'org.springframework.integration:type=MessageChannel,name=turbineStreamInput': registering with JMX server as MBean [org.springframework.integration:type=MessageChannel,name=turbineStreamInput] 2017-07-21 15:30:09.485 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Registering MessageHandler errorLogger 2017-07-21 15:30:09.487 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Located managed bean 'org.springframework.integration:type=MessageHandler,name=errorLogger,bean=internal': registering with JMX server as MBean [org.springframework.integration:type=MessageHandler,name=errorLogger,bean=internal] 2017-07-21 15:30:09.528 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Registering MessageHandler hystrixStreamAggregator.sendToSubject.serviceActivator 2017-07-21 15:30:09.529 INFO 34939 --- [ main] o.s.i.monitor.IntegrationMBeanExporter : Located managed bean 'org.springframework.integration:type=MessageHandler,name=hystrixStreamAggregator.sendToSubject.serviceActivator,bean=endpoint': registering with JMX server as MBean [org.springframework.integration:type=MessageHandler,name=hystrixStreamAggregator.sendToSubject.serviceActivator,bean=endpoint] 2017-07-21 15:30:09.551 INFO 34939 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6b415f5f: startup date [Fri Jul 21 15:30:09 PDT 2017]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@52d645b1 2017-07-21 15:30:09.596 INFO 34939 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Overriding bean definition for bean 'handlerExceptionResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration; factoryMethodName=handlerExceptionResolver; initMethodName=null; destroyMethodName=(inferred); defined in org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=endpointWebMvcChildContextConfiguration; factoryMethodName=compositeHandlerExceptionResolver; initMethodName=null; destroyMethodName=(inferred); defined in org.springframework.boot.actuate.autoconfigure.EndpointWebMvcChildContextConfiguration] 2017-07-21 15:30:09.622 INFO 34939 --- [ main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring 2017-07-21 15:30:09.645 INFO 34939 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8990 (http) 017-07-21 15:30:10.453 INFO 34939 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase -2147483648 2017-07-21 15:30:10.454 INFO 34939 --- [ main] o.s.i.endpoint.EventDrivenConsumer : Adding {service-activator:hystrixStreamAggregator.sendToSubject.serviceActivator} as a subscriber to the 'turbineStreamInput' channel 2017-07-21 15:30:10.455 INFO 34939 --- [ main] o.s.integration.channel.DirectChannel : Channel 'turbine:-1.turbineStreamInput' has 1 subscriber(s). 2017-07-21 15:30:10.455 INFO 34939 --- [ main] o.s.i.endpoint.EventDrivenConsumer : started hystrixStreamAggregator.sendToSubject.serviceActivator 2017-07-21 15:30:10.456 INFO 34939 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase -2147482648 2017-07-21 15:30:10.457 INFO 34939 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 0 2017-07-21 15:30:10.483 INFO 34939 --- [ main] i.reactivex.netty.server.AbstractServer : Rx server started at port: 8989 2017-07-21 15:30:10.538 INFO 34939 --- [ main] o.s.i.endpoint.EventDrivenConsumer : Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel 2017-07-21 15:30:10.538 INFO 34939 --- [ main] o.s.i.channel.PublishSubscribeChannel : Channel 'turbine:-1.errorChannel' has 1 subscriber(s). 2017-07-21 15:30:10.538 INFO 34939 --- [ main] o.s.i.endpoint.EventDrivenConsumer : started _org.springframework.integration.errorLogger 2017-07-21 15:30:10.538 INFO 34939 --- [ main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147482647 2017-07-21 15:30:10.618 INFO 34939 --- [ main] c.example.demo.TurbineSteamApplication : No active profile set, falling back to default profiles: default 2017-07-21 15:30:10.623 INFO 34939 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@5be51aa: startup date [Fri Jul 21 15:30:10 PDT 2017]; parent: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@52d645b1 2017-07-21 15:30:10.660 INFO 34939 --- [ main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring 2017-07-21 15:30:10.718 INFO 34939 --- [ main] o.s.c.s.b.k.c.KafkaBinderConfiguration : AdminUtils selected: Kafka 0.9 AdminUtils 2017-07-21 15:30:10.759 INFO 34939 --- [ main] c.example.demo.TurbineSteamApplication : Started TurbineSteamApplication in 0.192 seconds (JVM running for 7.596) 2017-07-21 15:30:10.796 INFO 34939 --- [-localhost:2181] org.I0Itec.zkclient.ZkEventThread : Starting ZkClient event thread. ```" "__label__enhancement Add return to generate:classmaps Currently the `generate:classmap` command produces: ```php <?php use Phpro\SoapClient\Soap\ClassMap\ClassMapCollection; use Phpro\SoapClient\Soap\ClassMap\ClassMap; new ClassMapCollection([ ... ]); ``` If this is intended to be dropped into a standalone file (evidenced by the opening delimiter and `use` statements, and then used with the ClientBuilder `withClassmaps()`, then it would be handier to include the `return` in it too: ```php <?php use Phpro\SoapClient\Soap\ClassMap\ClassMapCollection; use Phpro\SoapClient\Soap\ClassMap\ClassMap; return new ClassMapCollection([ ... ]); ```" "__label__enhancement Add random faction selection Implement random faction selection. - Add [Select random] button to faction selection screen - This button will select 1 random faction (with regards of other faction selected in other sides) - Add [Clear] button, which will clear selection" __label__enhancement Threefold repetition Add the [threefold repetition](https://en.wikipedia.org/wiki/Threefold_repetition) rule to the game. __label__enhancement Add test-vectors generator program for wallet __label__enhancement label the stages with instructions to guide people through using the app "__label__enhancement Update ""README"", CONTRIBUTING, add information about translations, etc " "__label__enhancement Show basic stats in admin area When browsing models in admin area, add basic count statistics to the high level overview. Examples: - [ ] Number of calendar items, reminders, attachments, and external calendars when viewing a user - [ ] Number of homeworks when viewing a course" "__label__bug BUG: [...A, () => 'B'] --> A.concat( [function () { return 'B']; }) ... Can we use buble in production?..." __label__bug Corregir los errores del código JPA del proyecto base "__label__bug Component bindings can't access store In an app with `store` support, any component can do this... ```html <input bind:value=$whatever> ``` ...but this doesn't work: ```html <Widget bind:x=$y/> ``` It just sets `$y` on the parent component, rather than setting `y` on the store." "__label__enhancement In development: Local peer discovery ## Why? It will allow to discover peers on local network without internet connection. Currently it's only possible by setting up a tracker by enabling the Bootstrapper plugin and pointing every client to that ip. ### How? [Zeroconf](https://en.wikipedia.org/wiki/Zero-configuration_networking) allow clients to discover each other without server intervention. ### What? Started working on local peer discovery using https://github.com/jstasiak/python-zeroconf as it seemed like the most active one and also works with gevent. ## Problems / Questions: ### Binary dependency It depends on netifaces module that is not pure-python which I try to avoid due multi-platform issues. Solved it by creating a ""fake"" netifaces module that returns using the current Upnp.py module's `_get_local_ips` function. Other dependencies: six, enum (both light, pure-python modules, so should not be a problem) ### How to broadcast the list of sites you have? - Creating service to each site - Adding it to service's description - Don't distribute it to zeroconf network, but allow the other client to receive a list of site address sha hashes you have. (this plugin will be turned off by default in tor: always mode) - Don't do anything, let other clients try and fail for unknown sites ### Avoid leaking local peer ips to peer exchange - Mark sites that received via zeroconf - Skip local ip ranges on pex ## Current status - I was able to create a registration request and other computer on the same network was able to discover it - Ran into some gevent error (<1.1 version), I was able to fix it, but one more ugly patches - Added private ip detection and filter to pex - Found a way to make it work on gevent without ugly patch - Moved to simple UDP broadcasting with custom protocol due [zeroconf problems](#issuecomment-361974868) ### Plan - [x] Create Plugin directory for it - [x] Basic broadcast listener server - [x] Testing basic broadcast server functions - [x] Extended broadcast server with peer discovery functions - [x] Implement discoverRequest, discoverResponse, siteListRequest, siteListResponse commands - [x] Test discoverRequest, discoverResponse, siteListRequest, siteListResponse commands - [x] Implement and test siteListRequest caching based on sites_change - [x] Test local peer exchange on UDP socket - [x] Connect peer discovery with announce events - [x] Prefer recently discovered tracker/LAN clients - [x] Set up multiple clients on LAN without internet connection for real-life testing - [ ] Release" "__label__bug [TW-1425] The 'age' format rounds in odd ways _Paul Beckingham on 2014-09-22T21:06:38Z says:_ The 'age' format is not configurable, and rounds in odd ways. Thanks to Black Ops Testing." "__label__question Question: syntax highlighting Hi, since I need to create a CodeArea with syntax highlighting, I tried the JavaKeywords demo to get started (using my own patterns) but, apparently, nothing changes. Can you please explain this argument here or in the wiki since there is nothing about this? Thanks, and sorry for my inexperience." "__label__bug Erreur du lien recu dans le mail lors de la modification de mon talk par un admin En temps que speaker, je souhaiterai consulter les commentaires des admins sans erreur [2016-06-12 14:30](le lien du mail recu envoie vers une page) " "__label__bug [Bug] SCM vanishes when opening a non-repository file. - VSCode Version: 1.9.3 - OS Version: Win x64 - Extension Version: 1.16.0 Steps to Reproduce: 1. open a SVN repos folder in vscode. The ext will be enabled 2. while keeping the folder open, open any file that is not in the repository, like, for exemple, User Settings. SCM vanishes. " "__label__bug Protect CrashC #define The tested code might define some macros called WHEN or THEN. Every crashc macro should be protected with the following idiom: ``` #ifdef WHEN # error ""WHEN has been already defined!"" #endif #define WHEN ... ``` or something like that: in this way, a compilation error will be thrown out (alternatively, we can throw a warning instead of a error=" "__label__bug Assertion failed: Wrong error type in Player#load **Have you read the [FAQ](https://goo.gl/JE1Sy5) and checked for duplicate open issues?**: Yes **What version of Shaka Player are you using?**: Latest from master **Can you reproduce the issue with our latest release version?**: No **Can you reproduce the issue with the latest code from `master`?**: Yes **Are you using the demo app or your own custom app?**: Demo app **What browser and OS are you using?**: Chrome 63 on macOS **What are the manifest and license server URIs?**: Sintel 4k (multicodec, Widevine) but any content should do **What did you do?** Rewrite the manifest response in Charles Proxy with an HTTP error status **What did you expect to happen?** Load should fail with BAD_HTTP_STATUS error **What actually happened?** The error caught in Player#load is `undefined`, so `error instanceof shaka.util.Error` fails. I do not see this problem in v2.3.2, so I assume this is a bug in the new AbortableOperation error handling. ![screen shot 2018-02-06 at 10 13 58 am](https://user-images.githubusercontent.com/7190265/35866954-8c8c0d6e-0b26-11e8-9d4a-597951aa9d59.png) " __label__bug Move devDomain from .dev to .local We need to move our dev domains from .dev to .local because of [Chrome auto redirect .dev requests to https](https://webdevstudios.com/2017/12/12/google-chrome-63/) "__label__bug Missing 2 atk on Rogue dagger + Res Refine While testing on felicia, i realized 2 atk where missing. Checking with my account, Rogue dagger+ with Res refining has 12 mt. In the simulator Rogue dagger+ has 7 mt and the Res refining adds 3. it should add 5. this is the build i was testing on: Felicia (5★+4 +res -hp Summoner: s Ally: s) Weapon: Rogue Dagger+ Refine: Res Bonus - Rogue Dagger Assist: Reposition Special: Glacies A: Attack Res 2 B: Guard 3 C: Atk Ploy 3 S: Distant Def 3 Hope this is clear enough, thank you in advance" "__label__bug Name resolving of array elements with `self` and `static` Example: ``` php class MySettings ... /* * @FormRenderer(LangSelector, {self, 'getLanguagesRef'}) ``` Current: Param 2 resolves to: ``` php [ false,// Not resolved `self` keyword 'getLanguagesRef' ] ``` Expected: ``` php [ 'MySettings',// Should resolve `self` keyword 'getLanguagesRef' ] ``` Workaround - use class name: ``` php class MySettings ... /* * @FormRenderer(LangSelector, {MySettings, 'getLanguagesRef'}) ``` " "__label__bug WINDOWFRAME is not a good color to use Mistakes have been made. Ugh, WINDOWFRAME on mac is a fine color, but not on Windows, or at least Windows 10. I'm going to have to release a new beta just so I don't have to look at the ugly color." "__label__enhancement [TW-1297] start and stop annotations _David Patrick on 2014-04-01T22:55:26Z says:_ When I issue a ""start"" or ""stop"" command, an annotation is created, that looks like ""04/01 17:46 start:"". If I issue the command ""tw 142 start research"", two annotations are created, one for ""research"" and one for ""start"", bit I think it would be better if the outcome was a single annotation that looked like ""04/01 17:46 start: research"". Similarly, it would be good to be able to note the reason for stopping with something like ""tw 142 stop phone call"". This would make for clearer records in fewer lines, and should have no effect on ""time-tracking"". " "__label__bug error * 0.37 Hi, error calculated here darch.Learn.R line 382 ``` error[[""raw""]] <- error[[""raw""]] + out[1] * (1 - dot632Const) error[[""class""]] <- (if (!is.na(out[2])) error[[""class""]] + out[2] * (1 - dot632Const) ``` It is right if validData is exist. If validData not exist - you show to user lowered error, but not real error." "__label__bug Cannot read property '_canvasDataGridUniqueId' of undefined ``` datagridOpts: CanvasDatagridOptions = { parentNode: null, editable: false, selectionMode: 'row', autoResizeColumns: true }; grid.data = new Array(10).fill([]); ``` > PayslipComponent.html:3 ERROR TypeError: Cannot read property '_canvasDataGridUniqueId' of undefined at Object.self.scroll (events.js:269) at Object.self.resize (events.js:244) at HTMLElement.schemaSetter (intf.js:974) at CanvasDatagridComponent.ngOnChanges (canvas-datagrid.component.ts:36) at checkAndUpdateDirectiveInline (core.js:10291) at checkAndUpdateNodeInline (core.js:11818) at checkAndUpdateNode (core.js:11761) at debugCheckAndUpdateNode (core.js:12640) at debugCheckDirectivesFn (core.js:12585) at Object.View_PayslipComponent_0._co [as updateDirectives] (PayslipComponent.html:6)" __label__enhancement Select card on click __label__question pre-deploy tasks https://github.com/cschramm/rails-audit "__label__bug Match error relating to caching in Zinc I'm reporting this in the hope that the stack trace is useful. The actual type of exception is not reported, but it appears to be a match error happening in Zinc, which looks a lot like a programming error. Note that the following is the entire output; it is not cut short. ``` [E] ## Exception when compiling 1 sources to /home/jpretty/dev/propensive.com/collectanea/bin [E] Some(((2018-01-28T12:29:12Z,87535),FileHash(file: /home/jpretty/dev/propensive.com/collectanea/magnolia/pkg/magnolia.jar, hash: 1165168535))) (of class scala.Some) [E] sbt.internal.inc.caching.ClasspathCache$.fromCacheOrHash$1(ClasspathCache.scala:35) [E] sbt.internal.inc.caching.ClasspathCache$.$anonfun$hashClasspath$1(ClasspathCache.scala:41) [E] scala.collection.parallel.mutable.ParArray$Map.leaf(ParArray.scala:656) [E] scala.collection.parallel.Task.$anonfun$tryLeaf$1(Tasks.scala:49) [E] scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.java:12) [E] scala.util.control.Breaks$$anon$1.catchBreak(Breaks.scala:63) [E] scala.collection.parallel.Task.tryLeaf(Tasks.scala:52) [E] scala.collection.parallel.Task.tryLeaf$(Tasks.scala:46) [E] scala.collection.parallel.mutable.ParArray$Map.tryLeaf(ParArray.scala:647) [E] scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask.internal(Tasks.scala:166) [E] scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask.internal$(Tasks.scala:153) [E] scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.internal(Tasks.scala:440) [E] scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask.compute(Tasks.scala:146) [E] scala.collection.parallel.AdaptiveWorkStealingTasks$WrappedTask.compute$(Tasks.scala:145) [E] scala.collection.parallel.AdaptiveWorkStealingForkJoinTasks$WrappedTask.compute(Tasks.scala:440) [E] java.util.concurrent.RecursiveAction.exec(RecursiveAction.java:189) [E] java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [E] java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [E] java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [E] java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) [E] [E] Compilation failed because of the following reasons: ``` " "__label__enhancement Ability to change name in participants list Originally reported on Google Code with ID 243 ``` It would be nice to allow the users to change their display name in the participants list. Perhaps they could right-click it, choose ""change display name"" and then have a small modal that would allow the change to be made. ``` Reported by `jeremythomerson` on 2009-11-12 01:37:47 " __label__bug Errors produced if there are no hits of a given database. The error is in the summary page and the missing hits db page for eg. BFR2 and VPS13 . All is ok with the rest of the details pages. "__label__question Kendo Component Dialog Service Action Button Disable? I am following the [documentation](http://www.telerik.com/kendo-angular-ui/components/dialog/service/) to create custom dialog actions however the documentation doesn't state any way to capture a user action event in another component. I have a dialog action noted below that needs to be disabled until the user inputs data. ``` template: `<ng-template #dialogActions> <button kendoButton [primary]=""true"" [disabled]=""!modalForm.controls.commentBox.valid>{{yesBtn}}</button> <button kendoButton >{{cancelBtn}}</button> </ng-template>` ``` My caller component looks like this ``` @ViewChild('dialogActions' )actionTemplate: TemplateRef<any>; const dialog: DialogRef = this.dialogService.open({ content: CommentsDialogComponent, actions: actionTemplate }); ``` My CommentsDialogComponent html looks like this ``` <form [formGroup]=""modalForm"" novalidate> <label class=""control-label"" for=""commentBox"">Comment:</label> <div class=""textwrapper"" id=""commentBox""><textarea cols=""2"" rows=""10"" #comments formControlName=""commentBox"" (blur)=""this.comment = comments.value""></textarea></div> <span *ngIf=""!modalForm.controls.commentBox.valid"" class=""text-danger""> Comment Required. </span> </div> </form> ``` The comments span will show and works fine as modalForm exists on the component however since the parent form holds the dialog actions I get an error 'modalForm is undefined' since the modalForm exists on the actual dialog component and not the caller dialog component. Why do we have to use and assing the dialogactions on the calling componen?. Why cant they be included with some sort of flag on the actual component and the dialogservice sees its exists on the component and picks it up? If I put the dialog actions in the actual CommentsDialogComponent html then I have no way of capturing the action button input and the documentation says nothing about doing this. " "__label__question use of Context in intra process demos Suppose I modify the two node pipeline such that there are now four nodes but one pair have a common context and the others don't. Then by the defination of using context the two pairs will not share their messages. ` auto producer = std::make_shared<Producer>(""producer"",""number"");` `auto consumer = std::make_shared<Consumer>(""consumer"", ""number""); ` `auto context_test = std::make_shared<rclcpp::Context>();` ` auto producer2 = std::make_shared<Producer2>(""producer2"",""number"",context_test);` `auto consumer2 = std::make_shared<Consumer2>(""consumer2"", ""number"",context_test); ` However that is not the case when I am using the above definition in a modified two_nodes_pipeline source code, as both the pair of nodes are receiving each other messages.Is there something I am doing wrong ?" "__label__question Project Structure ## Questions I am using Rocket 0.3.6,In my project, I want organize my files like this: ----pro - Cargo.toml - Cargo.lock -src ├── lib.rs //here contains : pub mod model, pub mod route ├── main.rs ├── model │   └── mod.rs └── route └── mod.rs I want to organize all routes in a mod, but when I finished it in route/mod.rs, #![feature(plugin)] #![plugin(rocket_codegen)] extern crate rocket; extern crate rocket_codegen; #[get(""/world"")] fn world() -> &'static str { ""Hello,World"" } something wrong! ![image](https://user-images.githubusercontent.com/35843204/35686892-5c746d6e-07a8-11e8-965e-60c0eb4b9e4e.png) does the route have to place in src/main.rs? how to solve this? thanks." "__label__bug HeaderEffects are no longer executed If you resize the window, the menu will no longer automatically collapse, because something is wrong with the initialization of the header effects." __label__enhancement PHAST Icon Fix colors __label__question 请教一个问题,距离和时间的关系是怎么得来的? "__label__question Configuration of the cmis backed Hello Assuming that you ahave an Alfresco instance (let's say alfrescodemo.eu), can you give us a few more details on the fields in the configuration ? Emplacement : https://alfrescodemo.eu ? Alfresco share url : https://alfrescodemo.eu/share/page ? Alfresco API url : https://alfrescodemo/alfresco/s/ ? Répertoire initial pour écriture : ??? Thanks a lot" "__label__bug Main Button label shows with no text Setting main menu item title to """" shows a bit of a label background with no text next to the main button. Could be because the extra padding recently added? " "__label__bug Editing a gift results in message ""people.gifts_update_success"" (v1.6.2) After editing a gift the message ""people.gifts_update_success"" is shown instead of the real message." "__label__bug Abort install if connect-pnponline fails Thank you for reporting an issue, suggesting an enhancement, or asking a question. We appreciate your feedback - to help the team understand your needs please complete the below template to ensure we have the details to help. Thanks! #### Category [X] Enhancement [ ] Bug [ ] Question #### Environment [ X] SharePoint Online [ X] SharePoint 2013 [ X] SharePoint 2016 #### Summary If connect-pnponline fails, it should not continue with the installation (will only throw error messages). #### Version Please specify what version you are using: [2.1.24 ] " __label__bug Haven goes in standby My phone is a Samsung Galaxy J3 (2016) Version of Android 5.1.1 Kernel version 3.10.65-12057946 Have you got any idea of how can we fix it is a really big problem cause if there is a false positive detected by Haven and then it goes in standby when thieves come in my room Haven won’t detect anything. Ps. Battery optimization is disabled. __label__enhancement NodeJS offers CLI arguments as well use npm package [yargs](https://github.com/yargs) __label__enhancement use the server module in a forked script via child_process.fork to improve cpu usage in windows __label__bug ensure that no key or secret token is logged "__label__bug Übung 5, Aufgabe 3 Evtl a denkfehler drin? Ausführung bringt konstant ""Overflow""..." "__label__bug Ashes Interaction Can't pick up ashes in a beaker, no interaction at all." __label__bug HTTP 404 when loading some images See http://docs.hazelcast.org/docs/jet/0.5.1/manual/Expert_Zone_--_The_Core_API/Jet_Execution_Model.html ![image](https://user-images.githubusercontent.com/158619/35969453-1dfe1ca0-0cc7-11e8-9a25-b248c4a07b91.png) ![image](https://user-images.githubusercontent.com/158619/35969473-3395db3e-0cc7-11e8-87e4-9b8d3460f151.png) __label__bug Crash when using nodes with Quaternion (k4Double) values __label__question TreeView: childs are not opened when kendoTreeViewHierarchyBinding and isExpanded ## I'm submitting a... * Bug report ## Current behavior Childs are not opened if `isExpanded` is used with `kendoTreeViewHierarchyBinding`. ## Expected behavior Childs are opened. ## Minimal reproduction of the problem with instructions Run this [Plunkr](https://plnkr.co/edit/wZtkaDAAnJSr7hXq7Cjt?p=preview). Open one child. "__label__question Oracle jdbc drivers for Java 7+ As it turned, Since the last release, we dropped support for Java 1.6. However, we still shipped Oracle JDBC drivers for Java 1.6 (ojdbc6.jar). However, they support Java 1.7 and 1.8 from [Oracle 12c drivers](http://www.oracle.com/technetwork/database/features/jdbc/default-2280470.html). According to their [compatibility matrix](http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html#01_02), this driver supports Oracle Database server version 11 and 12. I have a few questions: - Is it OK not to support Oracle Databases with versions <11? - Is the migration straightforward? Can anyone who knows Oracle provide some insight? " __label__bug [TW-14] Parent recurring tasks cannot be deleted _Miguel de Val Borro says:_ A parent hidden task cannot be deleted from the task list: <pre> $ task 49 del Task 49 'Pay rent' is neither pending nor waiting. </pre> Sometimes it is necessary to delete the parent task directly when there are no pending child tasks that could be deleted. This problem has been reported already in bug #801 but it is not yet assigned. __label__enhancement Add analytics We should add analytics to the site "__label__bug Przyjazna nazwa pliku pobieranego z materiałów Nazwa nie powinna być guidem, ale nazwą która powie coś użytkownikow" "__label__bug [TW-43] Better error handling than: ""Found extra operands."" _Benjamin Weber says:_ _What happened?_ @t 386 mod end:2013/23/11@ results @Found extra operands.@ _What do I expect to happen?_ I read something what enables me to solve the issue. When the command line is evaluated, it converts everything to an RPN stack, and when it has finished processing that, there are operands left on the stack. Like entering this on an RPN calculator: ""1 2 3 +"", there is a ""1"" leftover. It has nothing to do with dateformat. The E9 calculator has no context to report a better error. May as well just say ""Sorry.""" __label__enhancement Add Storage func for db search by hash Add a storage routine for searching for a subset of torrents by hash string. This is for the ChangeStorageLocation function so we don't have to iterate over all added torrents and match. "__label__bug Can not enable_logging on Windows10 + neovim # Problems summary `deoplete#enable_logging()` has error. ## Expected When I called `deoplete#enable_logging(""DEBUG"",""deoplete.log"")` in command-line-mode, show error and does not make logfile. ``` error caught in async handler 'deoplete_enable_logging [{'rpc': 'deoplete_enable_logging'}]' TypeError: enable_logging( ) takes 1 positional argument but 2 were given ``` ## Environment Information * deoplete version(SHA1): 865747efe41ea1d923758617d71e8e5b59da292e * OS: Windows 10 Home 1709 16299.192 * neovim/Vim version:NVIM v0.2.0-781-g59ea30ad * `:checkhealth` or `:CheckHealth` result(neovim only): ``` health#nvim#check ======================================================================== ## Configuration - SUCCESS: no issues found ## Performance - SUCCESS: Build type: Release ## Remote Plugins - WARNING: """" is not registered. - WARNING: Out of date - SUGGESTIONS: - Run `:UpdateRemotePlugins` health#provider#check ======================================================================== ## Clipboard - SUCCESS: Clipboard tool found: win32yank ## Python 2 provider - WARNING: No Python interpreter was found with the neovim module. Using the first available for diagnostics. - WARNING: provider/pythonx: Could not load Python 2: python2 not found in search path or not executable. python2.7 not found in search path or not executable. python2.6 not found in search path or not executable. C:\Users\akiya\AppData\Local\Programs\Python\Python36\python is Python 3.6 and cannot provide Python 2. - ERROR: Python provider error - SUGGESTIONS: - provider/pythonx: Could not load Python 2: python2 not found in search path or not executable. python2.7 not found in search path or not executable. python2.6 not found in search path or not executable. C:\Users\akiya\AppData\Local\Programs\Python\Python36\python is Python 3.6 and cannot provide Python 2. - INFO: Executable: Not found ## Python 3 provider - INFO: `g:python3_host_prog` is not set. Searching for python in the environment. - INFO: Multiple python executables found. Set `g:python3_host_prog` to avoid surprises. - ERROR: ""C:\Users\akiya\AppData\Local\Programs\Python\Python36\python"" was not found. - INFO: Executable: Not found - INFO: Other python executable: C:\Users\akiya\AppData\Local\Programs\Python\Python36\/python - INFO: Other python executable: C:\Python27/python ## Ruby provider - INFO: Ruby: ruby 2.4.1p111 (2017-03-22 revision 58053) [x64-mingw32] - WARNING: Missing ""neovim"" gem. - SUGGESTIONS: - Run in shell: gem install neovim - Is the gem bin directory in $PATH? Check `gem environment`. - If you are using rvm/rbenv/chruby, try ""rehashing"". health#deoplete#check ======================================================================== ## deoplete.nvim - SUCCESS: has(""nvim"") was successful - SUCCESS: has(""python3"") was successful - INFO: If you're still having problems, try the following commands: $ export NVIM_PYTHON_LOG_FILE=/tmp/log $ export NVIM_PYTHON_LOG_LEVEL=DEBUG $ nvim $ cat /tmp/log_{PID} and then create an issue on github ``` ## Provide a minimal init.vim/vimrc with less than 50 lines (Required!) ```vim set runtimepath+=~\.cache\deoplete.nvim\ let g:deoplete#enable_at_startup = 1 ``` ## The reproduce ways from neovim/Vim starting (Required!) 1. start neovim-qt from start menu 2. call deoplete#enable_logging(""DEBUG"",""deoplete.log"") ## Generate a logfile if appropriate ## Screen shot (if possible) ![2018-02-01_13h50_49](https://user-images.githubusercontent.com/14228487/35662721-ffd64bcc-075c-11e8-91d2-a77768df3c79.png) ## Upload the log file " "__label__bug TypeScript: Fix abstract class generation See https://github.com/RSuter/NSwag/issues/1093#issuecomment-363476113 **1.** ``` export class EntitiesDifference extends EntitiesOperation implements IEntitiesDifference { source: QueryNode = null; except: QueryNode = null; constructor(data?: IEntitiesDifference) { super(data); this._discriminator = ""EntitiesDifference""; } init(data?: any) { super.init(data); if (data) { this.source = data[""Source""] ? QueryNode.fromJS(data[""Source""]) : new QueryNode(); ``` NOTE: QueryNode is abstract. I replaced the code with null to continue working. **2.** ``` static fromJS(data: any): PathPredicate { data = typeof data === 'object' ? data : {}; if (data[""discriminator""] === ""InRelativePeriod"") { let result = new InRelativePeriod(); result.init(data); return result; } ``` NOTE: InRelativePeriod is abstract too. And is not possible to receive a discriminator with this value." "__label__bug Launcher icons disappear (issue reocurrence with v7) Within about 10 minutes of upgrading to v7 I've already seen the application launcher icons disappear once (only disabling then re-enabling the extension brought them back). I saw this previously with a pre-v6 version, not sure if there was an issue ticket for that? My panel size is 32 if that helps; I seem to remember that was relevant last time." "__label__bug Data loss and other save issues w/0.9.41 and 0.9.42 I recently upgraded from 0.9.37 to 0.9.41 and started having issues with other tools, and problems losing files. Today I lost an entire day's work because Typora stopped being able to save a file and it looked as though it saved but in fact it *deleted* the original file. There seems to be something else weird about the saving process as well: I normally run the [`entr` file monitoring tool](http://entrproject.org/) on my server to detect changes to the files I'm editing with Typora, in order to re-run the tests that are embedded in the files. Upon upgrading to 0.9.41 and above this stopped working: entr no longer detects when the files are saved. It also used to be the case that opening a file in another editor besides Typora would ""play nicely"", in that Typora would pick up the changes. Now, it seems to be holding something open or locking, because saving in another editor gives permission errors on the file. Between these various problems I've had to revert to 0.9.37 because entr is a critical part of my development workflow. (I tried upgrading to 0.9.42, and it has the same problem.) Running inotifywait to investigate, I notice that while 0.9.37 appears to close the file after saving, 0.9.41 and 0.9.42 appear to reopen it and keep it open. (This is probably what's keeping entr from working properly, as it expects to see the file closed for a bit before it considers it safe to run the build and test process on it.) The other problem with keeping the file open is that I'm using a network connection over a VPN that sometimes lags or drops, and I suspect that may have been involved in the data loss issue, even though the connection was working at the time I attempted to save. There is sometimes an issue where Typora will appear to have saved the file, but inspecting the file on the other end of the connection it remains unchanged. I don't know if that's the same issue that caused the file to disappear altogether today, though. (As in, I told Typora to save the file, and then the file ceased to exist, forcing me to restore a day-old backup.) " "__label__bug You can't examine things in your inventory any more. If you have something in your bag, hand or pockets you can no longer examine it with hots keys. You could before I have no idea what bored it. " "__label__enhancement Replace the usage of `std::Arc` with faster internal version While great, the standard library's `Arc` could be made faster for our use case. To name one modification, we do not use the `Weak` pointer of the standard library `Arc`. Some inspiration for this could be from the [Server Arc](https://github.com/servo/servo/blob/master/components/servo_arc/lib.rs)." __label__bug Approving an expense doesn't record the last user's id So we can't tell who updated it. "__label__bug Bug with multiple separator applets Hi. Wanted to separate my System Tray from other aplets (like keyboard layout, sound, date...) Added one separator from the right side. Then tried to add separator from the left side (at the left have window list applet). But Cinnamon crashed. After restart can not place it before System tray (at the left side). Doing this in Panel Edit Mode by hold-and-drag with mouse pointer. In Settings (Applets list) only one item of Spacer applet displayed, and order is not changable (in XFCE, for instance, you can rearange applets order in Settings menu) ![screenshot from 2016-10-05 01-43-58](https://cloud.githubusercontent.com/assets/19569543/19095211/3c6a39f6-8a9d-11e6-8631-79005bdb0fc3.png) " "__label__enhancement Can you add onLayout prop? I know that it is possible to pass onLayout with `customWrapper`, but it will be good to have it as top level prop. <img width=""805"" alt=""screen shot 2017-11-13 at 12 45 04"" src=""https://user-images.githubusercontent.com/14208343/32721833-8173cb0e-c870-11e7-9b12-e6396c0b8c1f.png""> " "__label__bug Zephyr installs a broken pyOCD The Zephyr file `scripts/requirements.txt` pulls in pyOCD: https://github.com/zephyrproject-rtos/zephyr/blob/master/scripts/requirements.txt That file is used to install Python 3 dependencies using pip(3) in Zephyr's getting started documentation: http://docs.zephyrproject.org/getting_started/installation_linux.html#installing-requirements-and-dependencies http://docs.zephyrproject.org/getting_started/installation_mac.html#installing-requirements-and-dependencies http://docs.zephyrproject.org/getting_started/installation_win.html#installing-requirements-and-dependencies pyOCD doesn't work on Python 3, though, as described in this issue: https://github.com/mbedmicro/pyOCD/issues/208 There are two changes that are needed to fix pyOCD use on Zephyr until that issue is resolved. 1. Zephyr must remove the pyOCD line from scripts/requirements.txt 2. The Zephyr documentation must clarify that if pyOCD is being used to flash a board (any board), it must be installed with Python 2 A fix for this issue requires checking around all the individual board documentation pages in addition to the getting started / installation instructions." __label__bug Clan log still pulls in EST time instead of game time __label__enhancement Improve error reporting in the Messages pane __label__enhancement Add load limit to the /fingerprints Add variable with limit (int) for /fingerprint (GET) to limit strain on the server. "__label__bug Parsing $DISPLAY strings for decnet differs from xcb results While implementing parse-display and checking against XCB's test I found that in the case of decnet addresses CLX's `xlib::get-default-display` differs from XCB. In that it doesn't consider the colon as part of the host. In CL ```lisp XCB/TESTS> (xlib::get-default-display ""myws::0"") ;; => (""myws"" 0 0 :DECNET) ``` While in XCB host is `myws:` as you can see from the test c snippet below as well as from the [test suite](https://cgit.freedesktop.org/xcb/libxcb/tree/tests/check_public.c#n145) Given that I know next to nothing about decnet I'm not 100% sure it is a bug in CLX, I'm inclined to believe their test suite. ```c // Compile it with: // gcc scratch.c -o scratch -std=c99 -I/usr/include -I/usr/include/xcb/ -L/usr/lib/x86_64-linux-gnu -lc -lxcb #include <stdlib.h> #include <stdio.h> #include <xcb.h> #include <string.h> int main(int argc, char *argv[]) { int err; char *host = NULL; int display, screen; err = xcb_parse_display(""myws::0"", &host, &display, &screen); if (err == 0) perror(""Failed to parse display""); printf(""Host: %s\n"", host); return EXIT_SUCCESS; } ``` " __label__enhancement [TW-1072] allow datetime as due value _Peter De Poorter on 2010-10-23T05:25:23Z says:_ Current situation: due:<due-date> Specifies the due-date of a task. Goal: to be able to use a datetime format as due value Example: task 3 due:25/10/2010-10:00:00 "__label__bug Handle conditional case statements Parsing ```C switch (no) { case arg_AX: rv = ®s->ax; break; case arg_BX: rv = ®s->bx; break; case arg_CX: rv = ®s->cx; break; case arg_DX: rv = ®s->dx; break; case arg_SP: rv = ®s->sp; break; case arg_BP: rv = ®s->bp; break; case arg_SI: rv = ®s->si; break; case arg_DI: rv = ®s->di; break; #ifdef __amd64__ case arg_R8: rv = ®s->r8; break; case arg_R9: rv = ®s->r9; break; case arg_R10: rv = ®s->r10; break; case arg_R11: rv = ®s->r11; break; case arg_R12: rv = ®s->r12; break; case arg_R13: rv = ®s->r13; break; case arg_R14: rv = ®s->r14; break; case arg_R15: rv = ®s->r15; break; #endif default: printk(KERN_ERR ""mmiotrace: Error reg no# %d\n"", no); } return rv; } ``` Will result in: ```Java java.lang.IllegalArgumentException: Illegal element net.ssehub.kernel_haven.srcml.transformation.CodeUnit while translating C:\Repos\GIT\KernelHaven\srcMLExtractor\real\Linux4.15\pf_in.c at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convert(TranslationUnitToAstConverter.java:101) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convertPreprocessorBlock(TranslationUnitToAstConverter.java:413) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convert(TranslationUnitToAstConverter.java:96) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convertTranslationUnit(TranslationUnitToAstConverter.java:278) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convert(TranslationUnitToAstConverter.java:94) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.createTypeDef(TranslationUnitToAstConverter.java:388) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convertTranslationUnit(TranslationUnitToAstConverter.java:223) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convert(TranslationUnitToAstConverter.java:94) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convertTranslationUnit(TranslationUnitToAstConverter.java:252) at net.ssehub.kernel_haven.srcml.transformation.TranslationUnitToAstConverter.convert(TranslationUnitToAstConverter.java:94) at net.ssehub.kernel_haven.srcml.transformation.XmlToSyntaxElementConverter.getAst(XmlToSyntaxElementConverter.java:199) at net.ssehub.kernel_haven.srcml.xml.AbstractAstConverter.getResult(AbstractAstConverter.java:61) at net.ssehub.kernel_haven.srcml.xml.XmlToAstConverter.parseToAst(XmlToAstConverter.java:56) at net.ssehub.kernel_haven.srcml.SrcMLExtractor.runOnFile(SrcMLExtractor.java:110) at net.ssehub.kernel_haven.srcml.AbstractSrcMLExtractorTest.loadFile(AbstractSrcMLExtractorTest.java:107) at net.ssehub.kernel_haven.srcml.RobustnessTests.testAllFiles(RobustnessTests.java:37) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192) ```" "__label__enhancement Flatpak support It would be cool, isn't it? There is not much that would prevent such a support, so if anyone wants to pick it up... Bonus point, this will allow to run tuhi on distribution with Python3 older than 3.6" "__label__bug Background Question Hint (EditText) There's a hint""Your Name"" for each of the background questions. Obviously, this is not good. Problem is, these questions are created based off of the survey schema defined on the admin side so we have no way to get a nice ""Your ____"" as a hint. Can we write something that makes a guess based off of the question? (Like are the questions standard enough) Resolving this bug is probably just changing it to ""Your Response"" with an english/spanish string and changing this bug to an enhancement. " "__label__enhancement Hide Rfam track in feature viewer, if no Rfam models are available " "__label__bug link sdk test crashes on release/device in RuntimeWrappedException ### Steps to Reproduce ```shell make run-ios-dev32-linksdk -C tests CONFIG=Release ``` ### Expected Behavior No crash ### Actual Behavior Crash report: https://gist.github.com/rolfbjarne/02653b55d353fa27a43b9aa5a5dc83e8 Terminal doesn't show anything interesting: https://gist.github.com/rolfbjarne/0850220eca6bc18632882eca27c23eee ### Environment This happens both with master and d15-6, but only in release mode on device." __label__bug Tests are not working in devel Probably due to config issues. "__label__bug Teleporter to act5, When you go to act5 with the png -ship , you can't return to NosVille ! " "__label__bug [TW-52] ""task add ... recur:2 months"" interpreted as ""2s"" _Paul Beckingham on 2013-07-25T20:00:21Z says:_ Recurrence interpreted as 2 seconds when this is entered: <pre> task add replace air filters recur:2 months due:today </pre> This creates *lots* of tasks, and should be either rejected or confirmed. Thanks to jwhisnant." __label__question Polyline with directions Hello i would like to know if it is possible to draw an oriented polyline using Polyline. My goal is to get the orientation of this path. Thanks in advance. "__label__question Aggiornare README Il readme dovrebbe contenere le informazioni di uso (configurazione, avvio, in caso di errori)" __label__question Plans for TPAC What would we like to do at TPAC? Here is a suggested list: - Testing breakout session - Testing plenary item (mostly for promotion) - Guide & Github breakout sessiom - WGE plenary item (to discuss all output) - AC session (for those reps who didn't wake up for the plenary!) "__label__bug [TW-21] do not match a UDA if not followed by colon _Scott Kostyshak says:_ The parser gets excited when it finds the name of a UDA but sometimes the name of a UDA might not be used as a UDA; it might be intended to be part of a description. If the UDA is not followed by a colon, then it is not being (at least correctly) used as a UDA and should not be interpreted as such. <pre> $ task add testing $ task testing rc.uda.testing.type:string [No matches] </pre> I would expect the same output as <pre> $ task description.contains:testing rc.uda.testing.type:string ID Project Pri Due A Age Urgency Description 1 16s 0 testing </pre>" "__label__bug [TW-371] tasksh tests in shell.t only work if ~/.taskrc exists _Paul Beckingham on 2013-04-07T16:07:56Z says:_ <pre> # shell.t 1..5 ok 1 - Created shell.rc not ok 2 - custom prompt is being used # Failed test 'custom prompt is being used' # at ./shell.t line 46. # 'A configuration file could not be found in /home/paul # # Would you like a sample /home/paul/.taskrc created, so taskwarrior can proceed? (yes/no) A configuration file could not be found in /home/paul # # Would you like a sample /home/paul/.taskrc created, so taskwarrior can proceed? (yes/no) Cannot proceed without rc file. # task 2.3.0 shell # # Enter any task command (such as 'list'), or hit 'Enter'. # There is no need to include the 'task' command itself. # Enter 'quit' (or 'bye', 'exit') to end the session. # # ' # doesn't match '(?^:testprompt>)' not ok 3 - add/info working # Failed test 'add/info working' # at ./shell.t line 51. # 'A configuration file could not be found in /home/paul # # Would you like a sample /home/paul/.taskrc created, so taskwarrior can proceed? (yes/no) A configuration file could not be found in /home/paul # # Would you like a sample /home/paul/.taskrc created, so taskwarrior can proceed? (yes/no) Cannot proceed without rc file. # task 2.3.0 shell # # Enter any task command (such as 'list'), or hit 'Enter'. # There is no need to include the 'task' command itself. # Enter 'quit' (or 'bye', 'exit') to end the session. # # ' # doesn't match '(?^:Descriptions+foo)' ok 4 - Removed shell.rc ok 5 - Cleanup # Looks like you failed 2 tests of 5. </pre>" "__label__enhancement Fallback mechanism in the Next Step server We should define fallback mechanism for the Next Step server and implement it. As the first step, we'll need to separate different FAILED states - this change is handled in #29. Once it is clear that an authentication method failed completely (e.g. too many login attempts), there should exist a mechanism to switch to an alternate authentication method, including the last resort - redirecting user to a support page. Petr, can you please elaborate on the requirements? Once the requirements are clear I will implement it." __label__bug windmill doesn't start on non-premium farms ``` + wget -nv -a mffbot.log --output-document=/dev/null '--user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64; rv:57.0b) Gecko/20100101 Firefox/57.0b' --load-cookies mffcookies.txt 'http://sxx.myfreefarm.com/ajax/city.php?rid=[RID]&city=2&mode=windmillcrop&slot=1' + start_WindMillNP city2 windmill 1 ../functions.sh: line 98: start_WindMillNP: command not found + update_queue city2 windmill 1 + local iFarm=city2 ``` when did this happen? ;) "__label__question Size down Mentor and Contact Us blocks on desktop They shouldn't be 100vh on desktop, but it looks good on mobile that way. Should be closer to 66% of the vh or something." "__label__question Method with does not exist. Datatable as a Service. ### Summary of problem or feature request <!-- Please describe your problem/feature request here. --> Hi, I have a view which needs a ticket before displaying, the problem is that when the table loads I have this message `DataTables warning: table id=dataTableBuilder - Ajax error. For more information about this error, please see http://datatables.net/tn/7`, I check in the request and I have this error `Method with does not exist.`. The problem is that this works the view is correctly displayed with the `$ticket`, it's just the table that doesn't display properly. ### Code snippet of problem ```php public function show(Ticket $ticket, TicketsDataTable $dataTable) { return $dataTable->render('tickets.edit')->with('ticket', $ticket); } ``` ### System details - Operating System Windows 10 - PHP Version 7.1.12 - Laravel Version 5.5 - Laravel-Datatables Version 8.0 " __label__enhancement Allow to restart containers for some tests It will be nice to restart containers for some tests. "__label__bug Jenkins evaluates some used files as unused. <img width=""1034"" alt=""screen shot 2018-02-01 at 17 48 18"" src=""https://user-images.githubusercontent.com/30343653/35691253-40f4ab6a-0778-11e8-8a2b-a33557785338.png""> The job keeps failing due to unused files. Some of those files are referenced through CSS (for example on-symbol.png) and some of the pictures are generated from the liquid code snippets (first one in the first picture). They are being used but Jenkins evaluates them as unused and reports a failure. ![screen shot 2018-02-01 at 17 22 41](https://user-images.githubusercontent.com/30343653/35690224-a504dc36-0775-11e8-88b2-3d50f58ad6d7.png) ![screen shot 2018-02-01 at 17 33 53](https://user-images.githubusercontent.com/30343653/35691244-3b59f912-0778-11e8-9f9f-d0448a421b88.png) " "__label__bug [studio] studio dashboard showing folder objects ### Expected behavior Folders cannot be acted on from the dashboard and should not be shown ### Actual behavior <img width=""1159"" alt=""screen shot 2018-01-22 at 3 40 51 pm"" src=""https://user-images.githubusercontent.com/169432/35253827-61377d78-ffb5-11e7-86e9-1fc6b43cb2f6.png""> ### Steps to reproduce the problem 1. Create a new folder in static assets 2. upload a item in the folder 3. change my recent activity to show all ### Log/stack trace (use https://gist.github.com) N/a ### Specs #### Version Studio Version Number: 3.0.4-SNAPSHOT-96266f Build Number: 96266fc3bdc591a154e4eb9b4218f9dc9153193c Build Date/Time: 01-15-2018 21:03:10 -0500 " __label__enhancement Host sonar docs on readthedocs.org # Opening a new issue ___ ## Specify type: - Enhancement ## Description: Host sonar docs on https://readthedocs.org/ See https://docs.readthedocs.io/en/latest/getting_started.html __label__enhancement Move to i3ipc-python https://github.com/acrisci/i3ipc-python "__label__question In OSX, nothing is showing in the methods section 8 Dec 06:59:41 - [info] Node-RED version: v0.17.5 8 Dec 06:59:41 - [info] Node.js version: v6.11.0 8 Dec 06:59:41 - [info] Darwin 16.7.0 x64 LE After installing the node, and opening an occurrence there is nothing in the Methods section, it is blank ![screen shot 2017-12-08 at 7 04 29 am](https://user-images.githubusercontent.com/11473405/33765803-a6ea80c2-dbe8-11e7-946c-7952a45146dd.png) " "__label__bug Mention kernel 3.9 is required <a href=""https://github.com/Informatic""><img src=""https://avatars2.githubusercontent.com/u/1131102?v=4"" align=""left"" width=""96"" height=""96"" hspace=""10""></img></a> **Issue by [Informatic](https://github.com/Informatic)** _Saturday Jul 22, 2017 at 10:58 GMT_ _Originally opened as https://github.com/plietar/librespot/issues/226_ ---- Hey, when trying to run a binary built with `librespot-cross` container on ""legacy"" (3.4) Allwinner H3 (OrangePi Zero) Linux Kernel I noticed it crashes with ""`Protocol not available`"" error when discovery is enabled. Sadly I don't have full error line, as I already resolved it and forgot to write it down. This error is thrown when calling `setsockopt` with `SO_REUSEPORT`, which is only available since Linux Kernel 3.9 AFAIK. It'd be nice to mention it in `README`, or find some solution to disable that syscall or ignore that error on unsupported systems. I'm not a rust developer myself, so wasn't even able to find a module (crate?) it is actually called in ;) Besides that everything works perfectly. " __label__enhancement Typescript? "__label__bug [NauvisDay] Crash in fans.lua I'm not sure what to do with this one, but hopefully you do. The game outright crashed -- that is, it paused while showing an error, and then returned to the main menu. ``` 170.969 Error MainLoop.cpp:1016: Exception at tick 3356760: Error while running event NauvisDay::on_tick (ID 0) LuaEntity API call when LuaEntity was invalid. stack traceback: __NauvisDay__/fans.lua:32: in function 'func' __NauvisDay__/control.lua:111: in function <__NauvisDay__/control.lua:84> ``` It may have been caused by adding FTweaks (somehow), or possibly it's been lying under the surface in .20; this is the first time I've run the world for more than half a minute, as I'm waiting for an EndgameCombat update. The problem wasn't there in .18, which is the last time I played this world for more than a minute. I've left the game running now *without* FTweaks, so I'll be able to tell you whether that mattered in a few hours. (By which time my base will be destroyed, because all the turrets disappeared due to a missing EndgameCombat. No worries though, it's just an alien invasion destroying all mankind holds dear... :P)" __label__enhancement Would like to have a param that takes the lines as an argument for the CSV --nol=100 should summarise the first 100 lines. "__label__bug ""operation not supported by the terminal"" with rustfmt-preview inside Emacs's `M-x shell` This did not used to happen until I switched to `rustup component add rustfmt-preview` (which probably involved upgrading to a newer `rustfmt` version than I had since the last time I did `cargo +nightly install rustfmt-nightly`?) ``` $ RUST_BACKTRACE=1 cargo fmt --all thread 'main' panicked at 'failed to emit error: operation not supported by the terminal', /Users/travis/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-ap-rustc_errors-12.0.0/emitter.rs:1269:23 stack backtrace: 0: std::sys::unix::backtrace::tracing::imp::unwind_backtrace 1: std::sys_common::backtrace::print 2: std::panicking::default_hook::{{closure}} 3: std::panicking::default_hook 4: std::panicking::rust_panic_with_hook 5: std::panicking::begin_panic 6: std::panicking::begin_panic_fmt 7: <rustc_errors::emitter::EmitterWriter as rustc_errors::emitter::Emitter>::emit 8: rustc_errors::Handler::emit_db 9: rustc_errors::diagnostic_builder::DiagnosticBuilder::emit 10: rustfmt_nightly::run 11: rustfmt::execute 12: rustfmt::main 13: std::rt::lang_start::{{closure}} 14: std::panicking::try::do_call 15: __rust_maybe_catch_panic 16: std::rt::lang_start_internal 17: main ```" __label__bug Editing a prize to include start and end run caused prizes section to crash As title __label__bug Token.balanceOf returns Invalid request Metamask completely broken for Kovan at least. This causes an error and prevents the user to proceed in the dapp. They already closed the issue and published on Chrome store. It can take up to 24 hours to automatically update each MetaMask client https://github.com/MetaMask/metamask-extension/issues/3094 "__label__enhancement [TW-124] add duration:<duration> core attribute _David Patrick on 2009-11-26T11:20:01Z says:_ to allow estimates of how long a task might take. This is a new attribute, and establishing the parameters will take some discussion, as taskwarrior does not (yet) deal in time-of-day. The easiest (and least flexible) option would be to allow only values representing duration in hours. It should probably look something like; task add invent foolicious pancake mix proj:bakesale dur:4.5h Project summaries would benefit from summing ""estimated time required"", and this number could be used to generate a warning when one task is about to be created that conflicts with an existing dated and durationned task." "__label__question Cyrillic support (Russian translation) Greetings, To begin with, I want to say that the program is simply wonderful, it introduces so much variety, it's a pity I learned about it not so long ago. And now the actual question is whether there is an opportunity to make sure that the font of the Cyrillic alphabet is displayed correctly in the game. For example, a couple of screenshots of how it looks at the moment. https://imgur.com/a/tmltD Once upon a time a craftsman made Launcher supporting the Russian translation, but he has no special desire to update it, and the files themselves are stitched, I do not know whether this will be useful, but I will send them to you. If necessary, I can ask not encrypted, unless of course he will agree. Here are links to the translation part files and launchers. https://mega.nz/#!ZdwC0TgZ!BNI77eQ4_1fx3cCGiaGk_kv31_faTnWVUsfMYcZsN8g https://mega.nz/#!9JpRSLzb!cg7jooph_VFXHrOm__SdZmaijEv-e4g5YS-658FuGaM And another question is not so important, but I'm interesting, can I change the font in the game? It would be nice to make it a script, changing one single file in the folder with the program. I look forward to hearing from you." "__label__enhancement requirements.txt and updated install process Hi @Cramix! It would be great to have a requirements.txt file ``` ~/aws-check-ri-usage $ pip install boto3 Collecting boto3 /home/ludo/.ve/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarning. SNIMissingWarning /home/ludo/.ve/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Downloading boto3-1.5.19-py2.py3-none-any.whl (128kB) 100% |████████████████████████████████| 133kB 3.6MB/s Collecting jmespath<1.0.0,>=0.7.1 (from boto3) Downloading jmespath-0.9.3-py2.py3-none-any.whl Collecting botocore<1.9.0,>=1.8.33 (from boto3) Downloading botocore-1.8.33-py2.py3-none-any.whl (4.0MB) 100% |████████████████████████████████| 4.1MB 139kB/s Collecting s3transfer<0.2.0,>=0.1.10 (from boto3) Downloading s3transfer-0.1.12-py2.py3-none-any.whl (59kB) 100% |████████████████████████████████| 61kB 3.4MB/s Collecting python-dateutil<3.0.0,>=2.1 (from botocore<1.9.0,>=1.8.33->boto3) Downloading python_dateutil-2.6.1-py2.py3-none-any.whl (194kB) 100% |████████████████████████████████| 194kB 2.5MB/s Collecting docutils>=0.10 (from botocore<1.9.0,>=1.8.33->boto3) Downloading docutils-0.14-py2-none-any.whl (543kB) 100% |████████████████████████████████| 552kB 1.2MB/s Collecting futures<4.0.0,>=2.2.0; python_version == ""2.6"" or python_version == ""2.7"" (from s3transfer<0.2.0,>=0.1.10->boto3) Downloading futures-3.2.0-py2-none-any.whl Collecting six>=1.5 (from python-dateutil<3.0.0,>=2.1->botocore<1.9.0,>=1.8.33->boto3) Downloading six-1.11.0-py2.py3-none-any.whl Installing collected packages: jmespath, six, python-dateutil, docutils, botocore, futures, s3transfer, boto3 Successfully installed boto3-1.5.19 botocore-1.8.33 docutils-0.14 futures-3.2.0 jmespath-0.9.3 python-dateutil-2.6.1 s3transfer-0.1.12 six-1.11.0 ~/aws-check-ri-usage $ ```" "__label__enhancement native: Inner styles **Issue Type:** Enhancement **Description:** Support inner styles in native similar to `innerClass` prop in web. ``` { ""inputElement"": {styleObject}, ... other inner elements } ``` **Reactivesearch version:** latest <!-- Check whether this is still an issue in the most recent stable version --> **Browser:** [all | Chrome XX | Firefox XX | Edge XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ] <!-- All browsers where this could be reproduced (and Operating System if relevant) -->" "__label__enhancement Create startup scripts for Linux As of now, the alignak backend python installer creates: * a launch script using `uwsgi` in the */usr/local/bin* directory * *rc.d* scripts on FreeBSD Whereas it is a packaging job, it may be interesting on some Linux distros to have *init.d* scripts. If needed, :+1: on this issue" "__label__enhancement WIP: Introduce CMake buildsystem <a href=""https://github.com/light2yellow""><img src=""https://avatars2.githubusercontent.com/u/10786469?v=4"" align=""left"" width=""96"" height=""96"" hspace=""10""></img></a> **Issue by [light2yellow](https://github.com/light2yellow)** _Saturday Aug 19, 2017 at 01:58 GMT_ _Originally opened as https://github.com/mattanger/ckb-next/pull/281_ ---- This pull request replaces qmake with CMake. It is done due to multiple reasons: * possibility to work on ckb-next using IDEs (e.g. Clion, Xcode) and editors with CMake integration (e.g. Visual Studio Code) different from Qt Creator * lack of extensibility and features by qmake * macOS toolchain bugs of qmake that prevent patch-free compilation * CMake in 2017 has become a standard when speaking of build systems So, below is (hopefully) a more or less complete description of the changes. Please, _note_ that the majority of decisions were made by my own vision of project ecosystem and are based on some reasoning, having pros and cons. I am willing to read justified views as this is my first experience with CMake and, in general, with a project of this size. I learned a lot about CMake and init systems during this work and rewrote listfiles from scratch multiple times. So, every next sentence describing rationale should be read as if it would start with ""IMO"". ### Executables The names of binary executables were changed: * `ckb` -> `ckb-next` * `ckb-daemon` -> `ckb-next-daemon` The above ones were promised in the 0.2.8 release note and finally create a distinction between `ckb-next` and `ckb`. On the other hand, animations were shortened as the `ckb-` prefix for binaries would be inappropriate considering the above changes and `ckb-next-<foo>` would be needlessly long, as the binaries can only be called by the GUI and are installed under own separate directory: * `ckb-gradient` -> `gradient` * ... ### Project structure The layout of files has changed: ```console  tree -d . . ├── cmake │   └── modules ├── linux │   ├── openrc │   ├── systemd │   └── upstart ├── macos │   └── pkgproj └── src ├── animations │   ├── gradient │   ├── heat │   ├── mviz │   ├── pinwheel │   ├── rain │   ├── random │   ├── ripple │   └── wave ├── daemon ├── gui │   └── resources └── libs ├── ckbnext │   ├── cmake │   └── include │   └── ckb-next ├── kissfft │   └── include │   └── kissfft └── quazip ``` * `cmake/modules` contains CMake modules that are used in this project and can be reused later by other projects * `linux` and `macos` contain Linux-specific and macOS-specific files that do not make sense otherwise * `src`: * `animations` - obvious * `daemon` - obvious * `gui` - obvious I used short and self-descriptive names instead of targets for ckb-next-daemon and ckb-next because it makes the project more intuitive for a newcomer (own experience). The targets being named like that themselves raise questions for me, but that's another story. * `resources` - all files that belong on both Linux and macOS and to the GUI exclusively, but were cluttering the sources. Speaking of resources, QRCs are now generated. For example, it is enough to add a png featuring a new device under `resources` and CMake will compile it into the GUI. * `libs` - our library and 3-rd party libraries * `ckbnext`: a prototype of ckb-next library. `ckb-anim.h` was removed from `ckb-next` and now spans its own library. CMake configs are installed as part of a normal installation, which allows downstream to use the library natively. All the downstream is supposed to do is simply `find_package(Animation)` in listfiles, receiving `CkbNext::Animation` `IMPORTED` target and `#include <ckb-next/animation.h>` in source files. Note that the names are a subject to change, because `Animation` is clearly ambiguous and should instead be at least `CkbNextAnimation`. However, it would be better to create a component-wise system (Qt5 is a good example), but it will take more time and effort. As this was created with extensibility in mind, a list of `CkbNext::` libraries can be exported if ckb-next obtains more APIs to provide. In general, this is somewhat a WIP, but already perfectly usable. * `kissfft` - a library used to live inside `ckb-mviz`. It is unpopular, i.e. is not in package repositories, and only few source files are used, so it's better to ship it. * `quazip` - a library used to live inside `ckb`. It is popular, however, because so far there is an agreement to support Ubuntu 14.04 LTS which lacks QuaZip for Qt5 in the repositories, it is shipped together with ckb-next. There is `ckbnextconfig.h` now. It is used to pass animation paths and define build-time ""defines"". For example: ```diff +#include <ckbnextconfig.h> //... QString AnimScript::path(){ -#ifdef __APPLE__ - return QDir(QApplication::applicationDirPath() + ""/../Resources"").absoluteFilePath(""ckb-animations""); -#else - return QDir(""/usr/lib"").absoluteFilePath(""ckb-animations""); -#endif + return QString(CKB_NEXT_ANIMATIONS_PATH); } ``` Similar simplifications should be done in future to other OS-dependent files. ### License headers Most of the listfiles ship with a license header. As this PR will hang some time, I'll populate the rest of them. As I got a little bit carried, I populated few non-listfiles with licenses as well, e.g. `kissfft` library already contains proper headers and acknowledgements. The default GNU headers were altered: firstly, ""GPL version 2 or any later"" replaced with ""version 2"", secondly, the link links directly at GPLv2.0. Note that the headers for listfiles authored by me will be changed to BSD 3-clause and current ones are supposed to appear in `.c[pp]/.h[pp]` files in future. To learn more about open-source software licensing, see [softwarefreedom's articles](https://www.facebook.com/l2yl2y/posts/1226984044114001). ### Compilation flags and build types `-Wall` and `-Wextra` are essential flags and a list of other useful warnings was added on top of that for `Debug` build type. The developers should read the warnings and fix them with code and not by disabling them (except for some obvious false positive cases). Current list of flags for almost all targets: ```console -fsigned-char -Wall -Wextra -Winit-self $<$<CONFIG:Debug>:-Wfloat-equal> $<$<CONFIG:Debug>:-Wundef> $<$<CONFIG:Debug>:-Wshadow> $<$<CONFIG:Debug>:-Wpointer-arith> $<$<CONFIG:Debug>:-Wcast-align> $<$<CONFIG:Debug>:-Wstrict-prototypes> $<$<CONFIG:Debug>:-Wstrict-overflow=5> $<$<CONFIG:Debug>:-Wwrite-strings> $<$<CONFIG:Debug>:-Wcast-qual> $<$<CONFIG:Debug>:-Wswitch-default> $<$<CONFIG:Debug>:-Wswitch-enum> $<$<CONFIG:Debug>:-Wconversion> $<$<CONFIG:Debug>:-Wformat=2> $<$<CONFIG:Debug>:-save-temps> $<$<CONFIG:Debug>:${opt_lvl}> ``` `$<CONFIG:Debug>` means the flag is enabled only with `Debug` build type. `${opt_level}` is optimization level, expands either to `-Og` if compiler supports it, or `-O0`. The default build type is `RelWithDebInfo`, however, for developers it is recommended to use `Debug` and for users it is recommended to use `Release`. List of additional flags appended by every build type: ```console CMAKE_C[XX]_FLAGS_DEBUG is -g CMAKE_C[XX]_FLAGS_RELEASE is -O3 -DNDEBUG CMAKE_C[XX]_FLAGS_RELWITHDEBINFO is -O2 -g -DNDEBUG CMAKE_C[XX]_FLAGS_MINSIZEREL is -Os -DNDEBUG ``` ### Versioning `VERSION` file was removed, instead a maintainer is supposed to increment ckb-next version in the main listfile. Git is used to determine a more precise version with `git describe`. That's why all how-to documents mention git cloning. I highly recommend to stop advicing people to download a ZIP code archive instead of cloning as it leaves versioning in a useless state when it comes to anything but release builds. Every non-release build is enhanced with revision and commit. When the `.git` directory is missing the build is versioned with `MAJOR.MINOR.PATCH` numbers hardcoded in the main listfile. See [Maintainers](https://github.com/mattanger/ckb-next/wiki/Maintainers-README) wiki article for more details about versioning and what CMake/git treats as a new version number. It has not been updated to reflect CMake-specific changes at the moment of writing this PR yet, but inevitably will. ### Documentation `README` became very short and on the point, most of the subsections were moved to the wiki. The ones not edited are marked with `(stub)` in the naming. Regarding CMake, installation sections for OSes were rewritten. Full list of written articles: * [CMake Options](https://github.com/mattanger/ckb-next/wiki/CMake-Options) * [Linux Installation](https://github.com/mattanger/ckb-next/wiki/Linux-Installation) * [macOS Installation](https://github.com/mattanger/ckb-next/wiki/macOS-Installation) * [macOS Packaging Guide](https://github.com/mattanger/ckb-next/wiki/macOS-Packaging) These articles contain additional information not mentioned here and are considered as a part of the PR. macOS installer ships with much longer `README` version. This is something to generate in future from wiki articles. Nevertheless, documentation is still an open question in regards to everything but CMake. The only thing was done is relaxing `README` so that there's no need to pollute it even more with CMake information. `Troubleshooting` definitely needs a rewrite and the list of supported devices should be updated and enhanced with information linking to issues depicting current support status of each device. ### Installation Most significant achievement is the `SAFE_INSTALL` option. It guarantees few things (indepent on the init system: systemd, Upstart, OpenRC and launchd are supported, independent on the OS): * whatever the state of ckb/ckb-next GUI is, it will be closed before installation * whatever the state of ckb-daemon/ckb-next-daemon is, it will be properly terminated to release a device before installation * the daemon will be stopped and permanently disabled though a service file, if this makes sense to the current init system * ckb/ckb-next GUI autostart files will be removed * except the above none of the old ckb files will be removed except those which overlap (they will be overwritten) * the daemon will be started and enabled though a service file, if this makes sense to the current init system All in all, `SAFE_INSTALL` is just perfect for instant reinstalls or lazy people that don't want to stop the services/don't know how to do it/don't know why to do it. Because ckb-next is still poor in distro-specific packages this is a great option for everyone who used to execute `./quickinstall`. The existence of `uninstall` target is based off same considerations, although the latter is a bit limited currently in comparison to what `SAFE_INSTALL` can do. `SAFE_INSTALL` has its tradeoffs. From CMake configuration time output: ```console Privileged access is required for operations upon the daemon at configure time as it is owned by root. If this is unacceptable, disable SAFE_INSTALL and prepare the filesystem manually. ``` So, one may have to enter a password requested by sudo. However, note that maintainers of distro-specific packages are supposed to disable this option and provide distro-specific ways to ensure the behaviour described above. For example, in Arch Linux `pkgbuild`s `post_*()` and `pre_*()` functions are used. Therefore a minimal example for package maintainers is: ```console cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DSAFE_INSTALL=OFF .. ``` See wiki for the whole list of options as it contains some important ones. For example, ckb-next follows GNU Coding Standards and by default the path to animations is `${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}/ckb-next-animations` which results into `/usr/local/libexec/ckb-next-animations` by default. ### Testing Most work and time went into making auxiliary files flexible or figuring out why they don't work together. However, in the end it's all for the sake of outer simplicity. Because there are so many pieces to it and something is usually overlooked, I ask the community to test this as much as possible: * if you know CMake, review it. Describe what you like/don't like about they way it is implemented. * read the above mentioned wiki pages to get familiar with CMake options and commands to execute * try different Linux/macOS starting conditions: enabled daemon, disabled daemon, started daemon, stopped daemon, running GUI, GUI started at login etc. * try the above permutation in combination with different platforms and init systems. I have tested systemd on Manjaro-systemd, launchd on Hackintosh 10.12.6, Upstart on Ubuntu 14.04 and OpenRC on Manjaro-openrc. * proofread the documentation if it's incorrect or missing anything. All CMake options are gathered in the main listfile. * if you are a native English speaker or just decent at it, don't hesitate to edit language errors in the wiki on the above mentioned articles, if you have the access. If you don't, use IRC chat or the mailing list to contact someone who has it. Some features have not been tested due to time restrictions, e.g. sanitizers. Closes #32. If something has been forgotten, don't hesitate to point this out. CC @hevanaa, @mrueg as ones who will be directly affected by this. You might want to read only the ""Installation"" & ""Testing"" sections and then the wiki pages. ---- _**[light2yellow](https://github.com/light2yellow)** included the following code: https://github.com/mattanger/ckb-next/pull/281/commits_ " "__label__enhancement Allow do extra control on controlled fields When using ""Field"" component, allow provide an ""onBlur"" property to do extra ""blur"" control. ```jsx <Field form=""t"" name=""a"" onChange={extraChangeControl} onBlur={extraBlurControl) onReset={extraResetControl} > <MyInputComponent /> </Field> ``` When using ""controlledField"" decorator, use the ""onChange"" and ""onBlur"" properties to the extra control. ```jsx let MyInputComponent = (props) => { return ( <input type={props.type} value={props.value} onChange={props.onChange} // this is the injected handler onBlur={props.onBlur} // this is the injected handler /> ) } MyInputComponent = controlledField()(MyInputComponent) <MyInputComponent form=""t"" name=""a"" onChange={extraChangeControl} onBlur={extraBlurControl} onReset={extraResetControl} /> ``` **Requirements** * The extra ""onChange"" and ""onBlur"" handlers should be invoked after controllers update." __label__bug am able to access /dashboard without login "__label__bug Permission denied to access property ""_rollbar_wrapped"" I am testing a web application written in javascript using multi-platform browser testing service, CrossBroswerTesting, and keep having the following issue: ```WebDriverException: Unable to execute javascript: ""return Math.max(window.document.body.offsetWidth,window.document.body.scrollWidth, window.document.documentElement.offsetWidth, window.document.documentElement.scrollWidth);"" -> Error: Permission denied to access property ""_rollbar_wrapped""``` from the following environment: - OS: Windows 8.1 - browser: Firefox (53.0) 64-bit" __label__enhancement Review Login Page structure LoginUserPage is the last form that has a structure different than the rest. It allows you to Login and Navigate to CreateUserPage. It also uses generic buttons in the Footer instead of the icons in the Header. "__label__bug Hub - unstarring a card does not remove it from the list without page reload When I am on the hub, and I am on the favourites tab, when I click a star, then the card is not removed (but the star/db is updated)." __label__enhancement add version to README "__label__question Problem when routing calls to an API that has no response body. Hi I try to forward calls to a method in an Web API method that has a ""void"" return type. What happens is that Ocelot hangs indefinitely. It seems to occur for any verb. Calling the method directly works fine and responds with HTTP/200. Is this an issue with my hosting or configuration, or could be a another problem. My Ocelot Gateway Implementation runs under IIS, and calling a method returning a response body works fine. Thanks " __label__enhancement Nested comments "__label__bug Windows output directory name is invalid <!-- Love javascript-obfuscator? Please consider supporting our collective: 👉 https://opencollective.com/javascript-obfuscator/donate --> In windows, if you try to run ""javascript-obfuscator . "" then it will create a directory with the obfuscated files with the name ""-obfuscated."", which is invalid in windows. This happens even if you specify the output directory like: ""javascript-obfuscator . --output ./obfuscated"" Turns out, you can create a directory that ends with ""."" fine, but any attempt to access, delete, rename, etc always gives either the error ""Windows cannot find this file"" or ""this directory is unavailable"". The only way to resolve this seems to be by using 7-zips file manager to rename the folder manually." "__label__question Support for named suppression groups We've been using Phan to test a code base (a plugin) against multiple targets. However, suppressions for target means that the warning or error would be always suppressed. A better way would be to suppress the warning based on a suppression group identifier. Here's an example of what a named suppression would look like: ``` @suppress PhanTypeMismatchArgument [v.1.6.6.1] ``` The suppression group name could be specified as a parameter in the phan.php. I'd be more than happy to make a fix or even a plugin. Would you be able to add this or provide instructions on where this change would need to be made? " __label__enhancement Containerize SAX Computation on reading Kafka Consumer data There needs to be a docker image with for a Java Kafka Client to reads numeric data from a Kafka topic are does a SAX computation. Acceptance Criteria: The project is mavenized and documented "__label__bug Multi-select in the Explorer: Delete deselected folder instead of selected ones ### Issue Type Bug ### Description 1. Multi-select several folders in the explorer. 2. Deselect a single folder (CTRL+Click) 3. Use the delete key on the keyboard Expected: It should delete the folders in the multi-selection Actual: It wants to delete the deselected folder VSCode: ![multiselect_deselectone_delete_vscode](https://user-images.githubusercontent.com/15158320/35986501-81c38c16-0cf9-11e8-96b4-cd62ca2f52d5.gif) Windows Explorer shows a different behavior: ![multiselect_deselectone_delete_windowsexplorer](https://user-images.githubusercontent.com/15158320/35986519-8f8f9678-0cf9-11e8-94a5-1c6fc7ddb89a.gif) ### VS Code Info VS Code version: Code - Insiders 1.21.0-insider (91120eb786357aa1e16217ad6a67cf0740f26e8e, 2018-02-08T05:16:13.920Z) OS version: Windows_NT x64 10.0.16299 <details> <summary>System Info</summary> |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (4 x 2694)| |Memory (System)|7.88GB (2.48GB free)| |Process Argv|C:\Program Files\Microsoft VS Code Insiders\Code - Insiders.exe| |Screen Reader|no| |VM|0%| </details><details><summary>Extensions (5)</summary> Extension|Author (truncated)|Version ---|---|--- regex|chr|0.1.0 tslint|eg2|1.0.24 python|ms-|2018.1.0 ayu|tea|0.12.0 vscode-todo-highlight|way|0.5.11 </details> Reproduces without extensions" "__label__enhancement Forward Proxy support Envoy currently doesn't support being used as a forward proxy. Forward proxy support would mean that any standard web browser could set an envoy as their proxy and send requests into a service mesh. I've hashed out some initial support in an internal build. I propose to add forward proxy support to envoy in 3 stages. I think that what roughly needs to happen is: 1. relax the assumptions that envoy makes about differences in url handling and connection management. proxy keep alive vs keep alive, absolute uri in method line 2. Add a notion of a 'default cluster' or similar fallthrough resolution. In my environment its sufficient to forward any traffic that isn't destined for something defined to border proxy, but i suspect more full fledged support for locating 'external' destinations would be useful. 3. Add CONNECT support. " __label__bug Support adaptive icons "__label__bug hitting ok earily sometimes cuts off letters - start typing - hit ok - greeted with network error page, seeing a truncated address - go back and add extra letters, wait, then hit ok, or space/backspace at end of address..." "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/UKby4T_XBo2iAhY2_147naSKYTtbTQ9TU3jGlCA_i6SrAvQe4VdU6rWsfYVRhEvp0/vOSRoKqrBTXfAzmVPzXW3kZ-UPljVB7c0z8IAoxKrbsrelQd9mFuaHlByLJeS4ru0/B0Y3MHtpfAqgobod6h105XVbuoYyN1TF5OE0OQNBtR81) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug `helm list`error maximum size exceeded ## Problem: After installing kolla-kubernetes (a collection of helm charts resulting in many releases) and attempting to do a `helm list` from a remote client I receive the following error: ``` Error: grpc: received message larger than max (6645791 vs. 4194304) ``` This problem does not manifest when performing `helm list` on the server. Currently the count of releases is 16 although I presume it also has to do with release size. Each release is composed of multiple sub-charts. ## Version: ``` Client: &version.Version{SemVer:""v2.7.2"", GitCommit:""8478fb4fc723885b155c924d1c8c410b7a9444e6"", GitTreeState:""clean""} Server: &version.Version{SemVer:""v2.7.2"", GitCommit:""8478fb4fc723885b155c924d1c8c410b7a9444e6"", GitTreeState:""clean""} ``` ## Solutions: Should I look into ""chunking"" the results as to not exceed the maximum or does someone have a better of idea of how to resolve this issue? " "__label__bug Signature Z-Moves error to NaN when selected as a Z-Move Silly stuff, the Z-buttons cause NaN's everywhere for Signature Z-Moves" "__label__bug Using Multiple editor on same page Placeholder text issue When using multiple editors on same page, setting placeholder text for last editor update same text for other editor also" "__label__bug I can crash the app When not logged in, just press login when no url has been entered" "__label__enhancement on timeout send a timeout message Hi, have used the node for my rainmeter. It gives a toggle every 5ml. I measure the time between 2 toggles to get the ml per hour. but if it rains 3ml and then stops i need a timeout that sends a ""stopped raining"" message. You have a timeout in your node, but is should send a message at timeout. at the moment i have a timeout node. What is OK, because a node should do not to much... I know there is a ""window timeout"", but that is only for the window function. ![screenshot 2017-11-26 16 12 49](https://user-images.githubusercontent.com/25864208/33241399-f37be70a-d2c4-11e7-8f88-3bf378608647.png) But if you consider adding the timeout message it would be a nice feature. regards M." "__label__bug Linux Meterpreter / mettle `cmd_exec` gives empty output on old Linuxes (Debian 5 / CentOS 5) `cmd_exec` on Linux Meterpreter sessions intermittently (more often than not) returns an empty string on old Linuxes (Debian 5 / CentOS 5). This issue does not exist on more recent, yet still ancient, Linuxes such as Fedora 13 and Ubuntu 10.04. ## Affected * CentOS 5.0 * CentOS 5.4 * CentOS 5.5 * CentOS 5.6 * Debian 5.0.4 ## Not Affected * CentOS 5.11 * Fedora 13 * Ubuntu 10.04 ## Steps to reproduce The following local exploit module demonstrates this issue: ```ruby ## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Exploit::Local Rank = ExcellentRanking include Msf::Post::File include Msf::Exploit::EXE include Msf::Exploit::FileDropper def initialize(info = {}) super(update_info(info, 'Name' => 'Test', 'Description' => %q{ Test }, 'License' => MSF_LICENSE, 'Author' => [ 'test' ], 'DisclosureDate' => 'test', 'Platform' => [ 'linux' ], 'Arch' => [ ARCH_X86, ARCH_X64 ], 'SessionTypes' => [ 'shell', 'meterpreter' ], 'Targets' => [[ 'Auto', {} ]], 'References' => [ [ ] ] )) end def exploit 10.times do puts cmd_exec 'echo test' end puts cmd_exec 'echo we made it to the end' end end ``` ## Current behavior Intermittent lies ## Expected behavior No lies ## Example Output ``` msf5 exploit(linux/local/test) > sessions Active sessions =============== Id Name Type Information Connection -- ---- ---- ----------- ---------- 1 debian 5.0.4 meterpreter x86/linux uid=1000, gid=1000, euid=1000, egid=1000 @ 172.16.191.151 172.16.191.244:1337 -> 172.16.191.151:49447 (172.16.191.151) 2 centos 5.0 meterpreter x86/linux uid=500, gid=500, euid=500, egid=500 @ 172.16.191.159 172.16.191.244:1337 -> 172.16.191.159:53458 (172.16.191.159) 4 centos 5.5 meterpreter x64/linux uid=500, gid=500, euid=500, egid=500 @ livecd.localdomain 172.16.191.244:1337 -> 172.16.191.144:44739 (172.16.191.144) 5 centos 5.4 meterpreter x64/linux uid=500, gid=500, euid=500, egid=500 @ livecd.localdomain 172.16.191.244:1337 -> 172.16.191.147:44223 (172.16.191.147) 6 ubuntu 10.04 meterpreter x64/linux uid=1000, gid=1000, euid=1000, egid=1000 @ 172.16.191.149 172.16.191.244:1337 -> 172.16.191.149:48460 (172.16.191.149) 7 fedora 13 meterpreter x86/linux uid=500, gid=500, euid=500, egid=500 @ fedora13.localdomain 172.16.191.244:1337 -> 172.16.191.138:43789 (172.16.191.138) ``` ``` msf5 exploit(linux/local/test) > set session 1 session => 1 msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 [*] Exploit completed, but no session was created. ``` ``` msf5 exploit(linux/local/test) > set session 2 session => 2 msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test [*] Exploit completed, but no session was created. ``` ``` msf5 exploit(linux/local/test) > set session 4 session => 4 msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test [*] Exploit completed, but no session was created. ``` ``` msf5 exploit(linux/local/test) > set session 5 session => 5 msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test [*] Exploit completed, but no session was created. ``` ``` msf5 exploit(linux/local/test) > set session 6 session => 6 msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test test test test test test test test test we made it to the end [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test test test test test test test test test we made it to the end [*] Started reverse TCP handler on 172.16.191.244:4444 test test test test test test test test test test we made it to the end [*] Exploit completed, but no session was created. ``` ``` msf5 exploit(linux/local/test) > set session 7 session => 7 msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test test test test test test test test test we made it to the end [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test test test test test test test test test we made it to the end [*] Exploit completed, but no session was created. msf5 exploit(linux/local/test) > run [*] Started reverse TCP handler on 172.16.191.244:4444 test test test test test test test test test test we made it to the end [*] Exploit completed, but no session was created. ``` Note that more modern, yet still ancient, Linuxes such as Fedora 13 and Ubuntu 10.04 are not affected. " __label__enhancement centos build testing https://djw8605.github.io/2016/05/03/building-centos-packages-on-travisci/ "__label__enhancement [TW-191] new helper-command; [args] _colorcodes _David Patrick says:_ This might be the first helper command to produce output that is not human-readable. It is designed to help extension-hackers re-apply the taskwarrior color-theme, after processes that left those colors behind long ago. What if this command produced a space-delimited list of the first and last color-directive of each line, for every line that the [args] might produce? It would certainly be unreadable! Here's the use-case; Somebody writes an extension using the export function, transforms the JSON however, and produces their own list. If this list is the same number of lines as the native tw command would have been (and this is common), then there's a possibility (?) that somehow $ tw shopping my-extension-alias and $ tw shopping _colorcodes because both commands produce lists of the same length, the extension author can (as early step) issue matching ""tw foo extention"" and tw foo ""_colorcodes"", and the (later step) prepend and append the color-codes to each line of the extension output, and viola! tw-themed! This is essential for visual consistency across extensions. Sure, colors are easy enough to produce, but if they're not consistent, they lose meaning, and it's not simple matter to replicate the 265-color-theme-file-execution-sequence + precedence algorithmy way that tw applies colors, so task-themes generally won't make it out to the various extensions (with the exception of vit, which sort of does this) which loses the opportunity of colors-that-mean-something. yetanothercrazytaskidea! now yours to noodle on :)" "__label__bug running a search in the 'search for' box on the home page results in a 'your url query is incomplete' error to reproduce, go to explorer.mediacloud.org without logging in, enter a search term, and hit enter." "__label__bug The Journal no longer caches filters It seems like all filters (at least the account filter) are no longer cached when you search from them in the Journal. They should be persistent unless they have the flag ""cacheable"" as ""0""." __label__enhancement Automatizar las pruebas del widget para seguir los perfiles en redes sociales **Prioridad:** alta **Descripción:** Implementar las pruebas necesarias para comprobar que el widget para seguir los perfiles en redes sociales funciona correctamente y automatizar éstas con Travis CI. __label__enhancement [TW-1009] New export.yaml command _Paul Beckingham on 2009-08-23T11:46:45Z says:_ "__label__bug Error ""could not connect to server: Connection refused"" Error message that caused due to delay in launch the database docker container: ``` sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) could not connect to server: Connection refused Is the server running on host ""postgres"" (172.18.0.2) and accepting TCP/IP connections on port 5432? ```" "__label__bug Password field containing the character "" aren't correctly saved @evilsocket # ### Description Hello Simone, I am currently testing your latest post with Arc. It's super clean (like all your projects), and I really like the idea. On the other hand I found a slight concern with the level of the passwords: the character "" is not taken into account. Example: I copy this passwd in a Password field: tt0hrsp/V$gXKr6guWgTtK6c"")6I8%D.QX2F'67k2Xxk4K2c""&umf0Pb&KSq9dN(s(HRIA I save, I copy again this field, and it always stops before the "": tt0hrsp/V$gXKr6guWgTtK6c I tested several times, and I still have the same result. ### Environment I use the last version available: pi@pisecure:~/work/go/src/github.com/evilsocket/arc/arcd $ ./arcd -config config.json -app arc --log-debug /home/pi/arcd.log [2018-02-02 16:38:42] INF arcd v1.1.9 (linux arm) is starting ... [2018-02-02 16:38:42] INF Loading configuration from config.json ... [2018-02-02 16:38:42] INF Loading database /home/pi/db ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/1 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/1' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/1/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/1' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/1/1 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/1/1' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/1/1/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/1/1' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/1/2 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/1/2' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/1/2/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/1/2' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/1/3 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/1/3' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/1/3/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/1/3' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/2 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/2' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/2/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/2' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/3 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/3' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/3/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/3' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/4 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/4' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/4/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/4' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/5 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/5' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/5/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/5' ... [2018-02-02 16:38:42] DBG Loading record from /home/pi/db/6 ... [2018-02-02 16:38:42] DBG Opening record from path '/home/pi/db/6' ... [2018-02-02 16:38:42] DBG Opening meta from '/home/pi/db/6/meta.json' ... [2018-02-02 16:38:42] DBG Loading index from '/home/pi/db/6' ... [2018-02-02 16:38:42] DBG dbNextId=7 [2018-02-02 16:38:42] INF 1.5 KB of records loaded in 58.835ms. [2018-02-02 16:38:42] DBG Starting scheduler with a period of 10s ... [2018-02-02 16:38:42] IMP Backups are disabled. [2018-02-02 16:38:42] IMP TLS certificate fingerprint is xxxxxxxxxxxxxxxXXXxxxxxxxxxxxxxxxxxxxxxxxxXXXxxxxxx= [2018-02-02 16:38:42] DBG Loading web application from /home/pi/work/go/src/github.com/evilsocket/arc/arcd/arc ... [2018-02-02 16:38:42] DBG Loading manifest from /home/pi/work/go/src/github.com/evilsocket/arc/arcd/arc/manifest.json ... [2018-02-02 16:38:42] DBG Checking for newer versions ... [2018-02-02 16:38:42] DBG Scheduler started with a 10s period. [2018-02-02 16:38:42] INF Running on https://10.254.1.1:8443/ ... [2018-02-02 16:38:47] INF New event (Pool size is 1): login_ok{when:2018-02-02 17:38:47.427327 +0100 CET what:'Successful login.'}. [2018-02-02 16:38:47] INF 10.254.1.2 'POST /auth' > User arc requested new API token [2018-02-02 16:38:47] DBG 10.254.1.2 'GET /api/config' > Requested configuration. [2018-02-02 16:38:47] DBG 10.254.1.2 'GET /api/store/1' > Requested store 1. [2018-02-02 16:38:47] DBG 10.254.1.2 'GET /api/store/1/records' > Requested records of store 1. [2018-02-02 16:38:48] DBG Streaming 571 B (571 b) of buffer to 10.254.1.2:25073. [2018-02-02 16:38:54] DBG Updating record '/home/pi/db/1/3' meta. [2018-02-02 16:38:54] DBG Flushing meta file '/home/pi/db/1/3/meta.json'. [2018-02-02 16:38:54] DBG Writing buffer to /home/pi/db/1/3/data ... [2018-02-02 16:38:54] DBG Flushing meta file '/home/pi/db/1/3/meta.json'. [2018-02-02 16:38:55] DBG Wrote 468 B (468 b) in 3.289ms ... [2018-02-02 16:38:55] DBG Flushing meta file '/home/pi/db/1/meta.json'. [2018-02-02 16:38:55] DBG 10.254.1.2 'PUT /api/store/1/record/3' > Updated record 3 of store 1. [2018-02-02 16:38:55] DBG 10.254.1.2 'GET /api/store/1' > Requested store 1. [2018-02-02 16:38:55] DBG 10.254.1.2 'GET /api/store/1/records' > Requested records of store 1. [2018-02-02 16:39:07] DBG Streaming 468 B (468 b) of buffer to 10.254.1.2:25073. [2018-02-02 16:39:11] DBG Updating record '/home/pi/db/1/3' meta. [2018-02-02 16:39:11] DBG Flushing meta file '/home/pi/db/1/3/meta.json'. [2018-02-02 16:39:11] DBG Writing buffer to /home/pi/db/1/3/data ... [2018-02-02 16:39:11] DBG Flushing meta file '/home/pi/db/1/3/meta.json'. [2018-02-02 16:39:11] DBG Wrote 572 B (572 b) in 3.617ms ... [2018-02-02 16:39:11] DBG Flushing meta file '/home/pi/db/1/meta.json'. [2018-02-02 16:39:11] DBG 10.254.1.2 'PUT /api/store/1/record/3' > Updated record 3 of store 1. [2018-02-02 16:39:11] DBG 10.254.1.2 'GET /api/store/1' > Requested store 1. [2018-02-02 16:39:11] DBG 10.254.1.2 'GET /api/store/1/records' > Requested records of store 1. [2018-02-02 16:39:16] DBG 10.254.1.2 'GET /api/stores' > Requested stores. [2018-02-02 16:39:40] DBG 10.254.1.2 'GET /api/store/1' > Requested store 1. [2018-02-02 16:39:40] DBG 10.254.1.2 'GET /api/store/1/records' > Requested records of store 1. [2018-02-02 16:39:42] DBG Streaming 572 B (572 b) of buffer to 10.254.1.2:25073. ^C [2018-02-02 16:39:55] IMP RECEIVED SIGNAL: interrupt [2018-02-02 16:39:55] INF Flushing database ... [2018-02-02 16:39:55] DBG Flushing meta file '/home/pi/db/6/meta.json'. [2018-02-02 16:39:55] DBG Flushing meta file '/home/pi/db/1/meta.json'. [2018-02-02 16:39:55] DBG Flushing meta file '/home/pi/db/2/meta.json'. [2018-02-02 16:39:55] DBG Flushing meta file '/home/pi/db/3/meta.json'. [2018-02-02 16:39:55] DBG Flushing meta file '/home/pi/db/4/meta.json'. [2018-02-02 16:39:55] DBG Flushing meta file '/home/pi/db/5/meta.json'. [2018-02-02 16:39:55] INF Database flushed in 41.592ms. ###JSON config file The json configuration file is the default one, (with my secret&password) ### Operating system and browser versions used as clients. Raspbian up-to-date, on Pi-Zero-W. pi@pisecure:~ $ uname -r 4.9.59+ Browser: Firefox 58.0.1 (64-bit) / Chrome Version 64.0.3282.140 (Official Build) (64-bit) OS: Windows10 1709 ###Debug output while reproducing the issue ( `arcd --log-debug ...` ). Empty Thank you in advance for your answers, and continue to make such good projects. I admire that. Stay in touch Amen0phix " "__label__question Using Sharp on Workspaces with virtual CPUs I'm running Sharp on a Cloud9 workspace and on a hobby server on Heroku. In both of these cases, you share a machine with a number of other users. When I try this: ``` const numCPUs = require(""os"").cpus().length; debug(`This Workpace / Dyno is reporting ${numCPUs} CPUs`); ``` it reports that 8 CPUs are available, which is clearly not right in terms of the virtual CPUs. I read that Sharp assesses the number of CPUs available and divides the jobs accordingly. How does this work in a shared environment? " "__label__enhancement test leaks sur get_next_line C'est pas vraiment un bug, mais plutôt une astuce. Sur les postes de 42, le system demande les identifiants administrateur. Mais on les a pas. Donc j'ai trouvé une solution, c'est de rentrer les identifiant : exam exam 👍 et ça marche :)" "__label__enhancement Support VP9 recording hi: i am testing record feature, use this https://github.com/medooze/media-server-demo-node i change to video codec to vp8/vp9/h264, the vp8/h264 works fine. vp9 record file just hundreds bytes. chrome version : Version 63.0.3239.132 (Official Build) (64-bit) mac os: 10.13.3" __label__bug Flag Icon path? Current flag icon path are wrong ``` /* OVERRIDE for flag icon (for more intuitive use then GB-en) */ .flag-icon-en { background-image: url(../bower_components/flag-icon-css/flags/4x3/gb.svg); } .flag-icon-en.flag-icon-squared { background-image: url(../bower_components/flag-icon-css/flags/1x1/gb.svg); } ``` Or i open /bower_components/ from root or i suppose that booth packages are in /bowercomponents/ floder. __label__bug MacOS:在气泡上右击翻译,弹出的对话框没有焦点 __label__question Small inputs? > Greenlet is most effective when the work being done has relatively small inputs/outputs. Mind giving some clarity on this? Are we speaking small data sets? __label__enhancement (Feature) Ability to order Categories Alphabetically "__label__bug [Preview] Show empty values We recently regressed when it comes to showing tooltips for empty/falsey values STR: 1. navigate to https://index-empties.glitch.me/ 2. click ""stuff"" 3. hover on falsyString, falsyBool, falsyNumber, undefinedThing, nullThing ```js function stuff() { let falsyString = """"; let falsyBool = false; let falsyNumber = 0; let undefinedThing = undefined; let nullThing = null; let truthyString = "" ""; let truthyBool = true; let truthyNumber = 1; debugger; } ```" __label__enhancement Locate + Add Various Content to Haks There's a load of Star Wars graphics and content available in various places. Need to scrounge it all up and package them into our hakpaks. __label__bug graphics: Reverting fullscreen mode freezes window system on Ubuntu "__label__enhancement Cannot configure the database table name prefix when using EntityFramework with MySql 我想要修改下Cap中表的前缀 使用如下代码: ```csharp capOptions.UseMySql(mysqlOptions => { mysqlOptions.ConnectionString = ""Server=192.168.69.177;Database=Dillon.Cap.Publisher;UserId=root;Password=Iubang001!;Allow User Variables=True""; mysqlOptions.TableNamePrefix = ""my.cap""; }); ``` 以上代码报错如下: >If you are using the EntityFramework, you need to configure the DbContextType first. otherwise you >need to use overloaded method with IDbConnection and IDbTransaction. 这个应该是因为 `MySqlOptions.DbContextType==null` 但是`MySqlOptions.DbContextType` 作用域是 **internal**,没法直接赋值。 如果通过反射对`MySqlOptions.DbContextType` 就可以了 ```csharp var dbContextType = typeof(EFOptions).GetProperty( ""DbContextType"", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); dbContextType.SetValue(mysqlOptions, typeof(AppDbContext)); ``` 用反射感觉不是很好,希望有更好的解决方案!" __label__enhancement Feature: Add Keypath to Configurable Adding Keypath to configurable protocol will enable response serializers to use the variable in decoding responses. __label__enhancement Implement notifications Use the pub/sub service to allow server to push notifications to clients. See https://github.com/PolaricServer/webapp2/issues/23 "__label__bug Agenda: de aangemelde gebruikers worden niet meer getoond Na een migratie wordt voor alle agenda-items de optie ""Aanwezigheid registeren"" uitgezet. Hierdoor tonen de aangemelde gebruikers niet meer. We willen graag standaard deze optie aanzetten zodat dit probleem zich niet meer voordoet." __label__bug Going to a build which doesn't exist shouldn't 404 Going to https://osu.ppy.sh/home/changelog?build=20170801dev should just return the user to https://osu.ppy.sh/home/changelog "__label__enhancement Support conditional interception based on the body ### Expected behaviour Enough infrastructure should be available in the library so that a user may elect to read the body _before_ it is sent (at their own risk, for example if it is in a write-only stream) and inform the interception message handler to intercept (or not) a request. ### Actual behaviour While it is possible to intercept the request before it is sent and inspect the body, it is not possible to change whether or not the request is intercepted. " __label__enhancement Search by effect Searches for effects like `[[Unstoppable]]` or `[[Slow]]` should return skills and talents that mention this. __label__bug @ should not be allowed in group names ### Steps to reproduce 1. create a group with an `@` in its name 2. share a file with that group ### Expected behaviour I think an @ should not be allowed in group names ### Actual behaviour Tell us what happens instead ![image](https://user-images.githubusercontent.com/2425577/34467261-0ce70d8a-ef14-11e7-9aea-30bcb9c03ccd.png) ### Server configuration **Operating system**: Ubuntu **Web server:** Apache **Database:** SQLite **PHP version:** 7.1 **ownCloud version:** (see ownCloud admin page) 10.0.4 **Updated from an older ownCloud or fresh install:** fresh **Where did you install ownCloud from:** git __label__bug Render prop fetch callback can call setState on render This likely needs to be wrapped in a setTimeout __label__bug Relaunch block explorer "__label__enhancement Suggestion/Feature: Capabilities upgrade Your potential feature lists fluids but you want a unique way. How about this, special craftable items that when put in the ender chest give all ender chests that capability. For instance a special crafted tank when placed would give the ender chest the capability to hold and move fluids (could be 1000mb by default or 8 or 16 to match other mods starting sizes) and this could be done on a capability and mod support basis (so you could do RF or EU or Telsa or what other capabilities there are) The item should be ignored by the regular inventory so it cannot be pulled out by automation, and the usual automation requirements should stand (so I have to make it private and use the security card for it to work.) This would reduce the number of slots available for items, which I believe is a fair trade. You could even keep the upgrade simple but allow multiples, so if I had 4 fluid upgrades the chest would hold 4000mb but I loose 4 item slots (actually I kinda like this idea best as I feel it balances it a little.) I would not reccomend multi-tank support (for multiple fluids) as that that could cause issues. Just my 2c. " "__label__bug [TW-4] lack of a tty + defaultwidth breaks task burndown _steve rader says:_ I'm seeing the lack of a tty influence task burndown! I get the expected results inspecting the output. But wrong results when it gets piped to grep... <pre> $ for w in `seq 40 10 120`; do > echo -e ""$w\t\c"" ; task rc.defaultwidth=$w burndown.daily | grep Estimated > done 40 Find rate: 2.7/d Estimated completion: No convergence 50 Find rate: 3.9/d Estimated completion: 2/15/2011 (3 wks).7/d 60 Find rate: 3.6/d Estimated completion: 2/21/2011 (4 wks)x rate: 7.4/d 70 Find rate: 3.0/d Estimated completion: 3/7/2011 (6 wks) 80 Find rate: 3.4/d Estimated completion: 4/7/2011 (11 wks) 90 Find rate: 3.9/d Estimated completion: 5/10/2011 (3 mths) 100 Find rate: 3.5/d Estimated completion: 6/4/2011 (4 mths) 110 Find rate: 5.8/d Estimated completion: 6/3/2011 (4 mths) 120 Find rate: 6.3/d Estimated completion: 7/11/2011 (5 mths) </pre> The expected results is... <pre> Find rate: 6.4/d Estimated completion: 10/21/2015 (4.8 yrs) </pre>" __label__enhancement Validate the user's password when resetting it Right now we just accept whatever password the user provides. It should be run through the same validation as when the user registers. __label__enhancement Add a DisplayLine.clicked(methodName) DisplayLine.clicked(methodName) runs function methodName when display line is clicked (using MinecraftVars.mouseX/Y) __label__enhancement Specify a license @CJBok: Can you [choose an open-source license](https://choosealicense.com/) for your mods? I'd like to encourage [community maintenance](https://github.com/Pathoschild/StardewCommunityMods#readme) of the mods. :) __label__enhancement Auto Start App "__label__bug Repo cannot always be cloned Tried cloning on Windows 10 (Pro, 64-bit, version 1709, build 16299.192), using GitKraken (version 3.3.4 64-bit), which failed. It seems the file `OLLabJackLibrary/src/U3dev/U3original/.U3dev.` causes an invalid path error. This is likely because there is `.` at the end, without an extension. When cloning in another client (SourceTree 2.3.5.0) on the same system, this file was cloned as `OLLabJackLibrary/src/U3dev/U3original/.U3dev` without the stray period (and this showed up in my uncommitted changes). Is there any reason not to rename to `.U3dev`?" "__label__enhancement INVENTORY: Update the inventory editing procces according to the following description 1. Remove ""Products, Super Category and Sub Category"" drop-down when user clicks ""Inventory"" 2. When user clicks ""Inventory"" system should open ""Super Category"" by default 3. When user hovers mouse cursor over any item added in ""Super Category"" or ""Sub Category"" -> ""Edit"" icon should appear in the top right corner when clicked editor for this category should be displayed ( now it opens when user clicks on the thumbnail image) 4. ""Create New"" button should be blue and should be always be displayed in the right upper corner. 5. Switching between supercategories, subcategories, and products should occur by clicking on the item itself. Add ""back"" arrow before the title of the page so the user can return to the previous layer." "__label__enhancement [TW-570] [RFE PATCH] Add deferred priority _Jeff Schroeder on 2012-04-25T17:17:52Z says:_ In my own task management style, I have tasks with these priorities: - High - Medium - Low - Deferred Speaking with Paul on IRC, he mentioned that I could delete and annotate a task that I'm not doing now, but might do in the future. This sort of works in that I can cd into ~/.task and revive it, but is suboptimal. I also understand that ""sort of high"" and ""sort of low"" are also valid tasks. Taskwarrior isn't meant to be infinitely flexible or configurable, but I see ""Deferred"" as a top level priority vs an ""in-between"" one such as ""sort of high"". Often times at work, I'll be working on a project and then it will block on someone else for a month or two. That project is in a deferred state. Note that this patch might be wrong as I've not written a single line of anything in C++ in the past 11 years, but it works for me. The error message, priority, sorting, and coloring was correct. In my colorscheme theme file (/usr/share/doc/task/rc/dark-blue-256.theme) I added color.pri.D=rgb012 Screenshot: http://www.digitalprognosis.com/pics/taskwarrior.png So... thusfar, this has been a great community, and one that I look forward to helping contribute to in the future. I hope this measly feature was integrated correctly and to the tw team's standards. Note that it is also available for the 'master' and '2.0.1' branches on my github: https://github.com/SEJeff/task Same patch applies cleanly to both. If this patch is integrated, I'll send more for the theme files." "__label__bug Composer support broken <!-- Thanks for reporting an issue with OctoLinker! In order to help get the fastest resolution to the problem, please fill in the following details: --> **Browser name:** Firefox **Browser version:** 58.0.1 (64-Bit) **OctoLinker version:** 4.16.0 **URL and line number where issue occurs:** right now: https://github.com/matthiasnoback/behat-local-code-coverage-extension/blob/master/composer.json#L6 but it occurs on every `composer.json` file since a while **Expected behavior:** A new tab for the package opens **Actual behavior:** Nothing happens ![grafik](https://user-images.githubusercontent.com/424602/35940828-b5870dec-0c50-11e8-8156-86f776342d99.png) " __label__enhancement Investigate on IPFS "__label__enhancement Multiple URLs ## This issue is a - [ ] bug - [x] feature - [x] question ### Please describe how you think it should change. I have some entries that require multiple URLs. For example, same (Active Directory) user account for multiple web sites. Is it possible to read an additional URL from a custom field? I know that I can also clone the entry and use references for username and password, but I would like to avoid that. " __label__enhancement Application Log [Stackoverflow](https://stackoverflow.com/questions/19256919/location-of-django-logs-and-errors) 참조 "__label__bug Unable to compile on Ubuntu When I run make I get: > In file included from xwin.c:21:0: > /usr/include/GLFW/glfw3native.h:102:3: error: #error ""No context API selected"" > #error ""No context API selected"" > ^ > Makefile:59: recipe for target 'xwin.o' failed " __label__enhancement Detect when running in a container to skip CBM updates The -b option was originally added to avoid having to detect whether or not the process was running in a container. It is trivial to check (for docker) by checking for the existence of `/.dockerenv` or for lines containing `/docker/` in `/proc/1/cgroup`. Other container types could be checked there as well. Originally reported to https://github.com/clearlinux/clr-bundles/issues/31 "__label__enhancement Add Package-lock.json to frontend **I'm submitting a ...** - [ ] bug report - [x] feature request **Current behavior:** Presently, there is no package-lock.json in the frontend. **Expected behavior:** It should be added to the frontend. Working on it 👍 " __label__enhancement 모듈 업데이트 개선 https://github.com/xpressengine/xe-core/commit/002f1da6d16ec636c226263dc682be7d77479c21 https://github.com/xpressengine/xe-core/commit/baf9b20eccc0e0e5512daf5ca7fe78a5cf0f571e 참고 "__label__enhancement xeno.canto.meta needs update It's very basic. Should be able to download on the basis of a seq, e.g.: ``` xeno.canto.meta(no=1:50) xeno.canto.meta(no=51:100) ``` ...to allow continuing from previous downloads. Also, the way you specify search parameters is awful right now! " __label__enhancement Tag projects with topic/strategy Could go in place of where we currently list the main destination for each project in grey above it. Would enable readers to to more quickly categorize each project. __label__enhancement Make 'parent' field configurable I work with data sets that come from other applications that I don't/can't control. The `parent` field of my data is `id_parent` and iterating over my data and renaming the filed seems a little bit of an overkill. Can you make the `parent` field configurable? (As in make it possible to specify what the `parent` field should be called). __label__bug Player can place blocks where he is currently standing and get himself stuck "__label__bug Animations do not export well if the mesh and armature have different origins A Blender project where I imported an OBJ+MTL file, rigged the model, and animated it, fails to texture when loaded in three.js. Additionally the animation has vertex errors when played. When exported using the Khronos exporter, the model textures, and the animation has no noticeable errors. The raw blender project is located here https://github.com/sctincman/gameoff2017/blob/master/src/blender/fox.blend, the original OBJ mesh used was taken from [here](https://poly.google.com/view/10u8FYPC5Br), and imported into blender. A modified three.js example is attached (exported model expected at ""models/gltf/fox/"" relative to html file. [demo.zip](https://github.com/Kupoman/blendergltf/files/1493755/demo.zip) Additionally, the GLTF export appears to have extra nodes. There are 3 copies of the Fox node ""Fox, Fox.001, Fox.002"", and the top-level scene contains an extra ""Root"" scene node below it. ``` + Scene |-- + Scene_Root | -- Fox | -- Camera | -- Sun ``` [fox.gltf.zip](https://github.com/Kupoman/blendergltf/files/1494534/fox.gltf.zip) Kupoman exported ![screenshot from 2017-11-21 20-21-59](https://user-images.githubusercontent.com/87428/33108496-ae621df2-cef9-11e7-824a-290e5ad503b8.png) Khronos exported ![screenshot from 2017-11-21 20-19-02](https://user-images.githubusercontent.com/87428/33108761-1437499e-cefb-11e7-8268-5958a6908311.png) " __label__bug [TW-1707] Context can leak into modifications _Tomas Babej on 2015-09-22T08:46:12Z says:_ The nature of the error is explained by the following command: {code} ttask rc.debug.parser=1 +ACTIVE stop Stopping task 2 'test'. Stopped 1 task. Timer Config::load (/usr/local/share/doc/task/rc/solarized-dark-256.theme) 0.000127 sec Timer Config::load (/home/tbabej/.taskrc) 0.000954 sec Filter::subset _original_args task rc.data.location=/tmp/ttask rc.debug.parser=1 +ACTIVE stop _args arg basename='task' raw='task' ORIGINAL BINARY TW arg name='data.location' raw='rc.data.location=/tmp/ttask' value='/tmp/ttask' ORIGINAL CONFIG arg name='debug.parser' raw='rc.debug.parser=1' value='1' ORIGINAL CONFIG argTag raw='tags' ATTRIBUTE FILTER argTag raw='_hastag_' OP FILTER argTag raw=''ACTIVE'' LITERAL FILTER arg canonical='stop' raw='stop' ORIGINAL CMD WRITECMD Applying context: school Derived filter: '( tags _hastag_ 'ACTIVE' )' Filtered 3 tasks --> 1 tasks [all tasks] CLI Parser _original_args task rc.data.location=/tmp/ttask rc.debug.parser=1 +ACTIVE stop ( project:Education.School ) _args arg basename='task' raw='task' ORIGINAL BINARY TW arg name='data.location' raw='rc.data.location=/tmp/ttask' value='/tmp/ttask' ORIGINAL CONFIG arg name='debug.parser' raw='rc.debug.parser=1' value='1' ORIGINAL CONFIG argTag raw='tags' ATTRIBUTE FILTER argTag raw='_hastag_' OP FILTER argTag raw=''ACTIVE'' LITERAL FILTER arg canonical='stop' raw='stop' ORIGINAL CMD WRITECMD arg raw='(' ORIGINAL MODIFICATION arg name='project' raw='project:Education.School' value='Education.School' ORIGINAL MODIFICATION ATTRIBUTE MODIFIABLE arg raw=')' ORIGINAL MODIFICATION Task::modify MODIFICATION project <-- 'Education.School' <-- 'Education.School' MODIFICATION new annotation <-- '( )' pending.data rw O T0002+000~001 L0002+000 completed.data rw - T0001+000~000 L0001+000 undo.data rw O T0000+000~000 L0004+004 backlog.data rw O T0000+000~000 L0001+001 Perf task 2.4.4 df49aab 20150922T085008Z init:2516 load:101 gc:0 filter:849 commit:79 sort:0 render:0 hooks:2 total:3547 Using alternate data.location /tmp/ttask Configuration override rc.data.location:/tmp/ttask Configuration override rc.debug.parser:1 {code} Might be applicable to more than 'stop' command. "__label__enhancement Scala API support Hi Fabrice, Great plugin, thanks! Will you still be adding support for the Scala API? Best, Jack" __label__enhancement Feature Request: Yoast SEO Posts Overview - add CPT support We use CPT exclusively for our posts. Would love to see support for the overview feature configurable to support multiple CPT selections. Thanks! "__label__bug [TW-1471] task calc uses output it doesn't understand _Jens Erat on 2014-12-13T22:28:44Z says:_ `task calc` uses a date output format which taskwarrior does not understand: {code} $ task add 'test' due:""$(task calc now)"" '2014-12-13T23:24:46' is not a valid date in the 'Y-M-D' format. {code} This requires workarounds when scripting hooks, as the dashes and colons have to be stripped and a 'Z' added before continuing. Either task warrior should understand the more readable version from the output, or the date format understood by task warrior used for printing dates." __label__bug Gimmick: yuml __label__enhancement Priority filter should also filter annotations in the editor __label__enhancement Add unit testing "__label__enhancement AbeilleMQTTCmd.php semble ne pas processer tous les messages Sur client getEtat Ikea Bulb, AbeilleMQTTCmd.php ne reagit pas à tous les coups alors que je vois les messaages dans mosquitto." "__label__enhancement Better encapsulation of kue job completely remove the exposure of the kue from interfaces, internal and external." __label__enhancement Wish: Make a SoapySDR version of Airband SDR's like Airspy and SDRPlay offer better sensitivity and dynamic range but command line linux apps are pretty much unusable. just unplugged my airspy r2 in the attic and put my rtlsdr v3 back on so i could use airband again. wish i could use my airspy or sdrplay with airband. "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/f0tTfKnUD5OsMzSmw6W6GDH6ct0GKdTKlQXUu-a0blX7zZ7dSnHP0e2dDArpbGE50/O6oS0AT5I76GHyxFflIEoUCspuLESXX33lDeZq6lrqKhxpgAJyDWPyWQsF7IHepN0/uOxSVmvClETKHXoahHWEyHMwk8vRqlW9MdK9mpd1Fh01) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug InteriorLeftNav component is not exported ## Detailed description The InteriorLeftNav component is not exported via index.js and thus cannot be used by client code. Carbon components gives the warning ""Accessing the `interior-left-nav` component from the `carbon-components`package is deprecated. Use the `carbon-addons-bluemix` package instead."", however this appears not to be possible because it is not exported. Other components are also not exported, which may also be an issue. > Is this issue related to a specific component? InteriorLeftNav > What version of the Carbon Design System are you using? 8.0.1 ## Steps to reproduce the issue 1. Try to use InteriorLeftNav from an npm installed carbon-addons-bluemix package. " __label__enhancement ROM extract Requires to finish issue #8 first: 1. Extract a ROM zip (custom ROM) 2. Loop mount (convert before) system.dat and others found in there 3. open file browser on mount point "__label__enhancement Webinspect REST api htaccess authentication There is an option in Webinspect agent's service, to enable an htaccess form base authentication to access the RESTful API. A great feature would be to support authentication in the `WebinspectClient` and `WebBreakerConfig` on either the command line or in a configuration file with symmetric encryption" "__label__question Parameter encoding - linker error I'm using ""Moya/Moya"" ""10.0.2"" and ""Alamofire/Alamofire"" ""4.6.0"" Once I add parameter encoding to TargetType enum declaration I'm getting linker error ```swift public var parameterEncoding: ParameterEncoding { return URLEncoding.httpBody } ``` ![image](https://user-images.githubusercontent.com/2151961/36021921-92e43264-0d87-11e8-85a6-fc77953ee5b5.png) Look's like problem is related with Alamofire, but I can't find any solutions. I'm using Carthage 0.27.0" "__label__bug Don't change rank if current rank is non-auto promoting When the rank calculation is run, if the `auto_promote` is set to false on the current rank, then bail out and don't change it." "__label__enhancement Stop moving node based on condition Hello, How can I stop dragging a particular node/based on some condition? Your response is appreciated! Thanks, Shafeek" "__label__question Razer Blade Stealth (Late 2017) isn't recognized by driver Just got the RBS Late 2017 and I'm really happy with it (however, still didn't fix the screen flicker and touchpad random clicking), but the openrazer drivers don't work. I'm using manjaro (`4.14.15-1-MANJARO`) and driver doesn't see the device. I tried `openrazer-meta` and `openrazer-meta-git` from AUR, both give me same results. I added myself to `plugdev` group as installation asked and I rebooted the device. Daemon output with `-Fv` ``` Starting daemon. 2018-02-02 16:21:01 | razer | INFO | Initialising Daemon (v2.2.0). Pid: 4229 2018-02-02 16:21:01 | razer.screensaver | INFO | Initialising DBus Screensaver Monitor 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerAbyssus ---------------------------- (1532:0042) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerAbyssus1800 ------------------------ (1532:0020) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerAbyssusV2 -------------------------- (1532:005B) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerAnansi ----------------------------- (1532:010F) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowChroma ------------------- (1532:0203) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowChromaOverwatch ---------- (1532:0211) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowChromaTournamentEdition -- (1532:0209) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowChromaV2 ----------------- (1532:0221) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowClassic ------------------ (1532:011B) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowClassicAlternate --------- (1532:010E) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowUltimate2012 ------------- (1532:010D) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowUltimate2013 ------------- (1532:011A) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowUltimate2016 ------------- (1532:0214) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowXChroma ------------------ (1532:0216) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowXTournamentEditionChroma - (1532:021A) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBlackWidowXUltimate ---------------- (1532:0217) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeLate2016 ---------------------- (1532:0224) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladePro2017 ----------------------- (1532:0225) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladePro2017FullHD ----------------- (1532:022F) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeProLate2016 ------------------- (1532:0210) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeQHD --------------------------- (1532:020F) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeStealth ----------------------- (1532:0205) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeStealthLate2016 --------------- (1532:0220) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeStealthLate2017 --------------- (1532:0232) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerBladeStealthMid2017 ---------------- (1532:022D) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerChromaMugHolder -------------------- (1532:0F07) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerCore ------------------------------- (1532:0215) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerDeathAdderChroma ------------------- (1532:0043) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerDeathAdderElite -------------------- (1532:005C) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerDeathStalkerChroma ----------------- (1532:0204) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerDeathStalkerExpert ----------------- (1532:0202) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerDiamondbackChroma ------------------ (1532:004C) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerFirefly ---------------------------- (1532:0C00) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerImperator -------------------------- (1532:002F) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerKraken ----------------------------- (1532:0504) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerKrakenClassic ---------------------- (1532:0501) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerKrakenV2 --------------------------- (1532:0510) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerMamba2012Wired --------------------- (1532:0024) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerMamba2012Wireless ------------------ (1532:0025) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerMambaChromaWired ------------------- (1532:0044) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerMambaChromaWireless ---------------- (1532:0045) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerMambaTE ---------------------------- (1532:0046) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerNaga2014 --------------------------- (1532:0040) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerNagaChroma ------------------------- (1532:0053) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerNagaHex ---------------------------- (1532:0041) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerNagaHexRed ------------------------- (1532:0036) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerNagaHexV2 -------------------------- (1532:0050) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerNostromo --------------------------- (1532:0111) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrbweaver -------------------------- (1532:0113) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrbweaverChroma -------------------- (1532:0207) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrnata ----------------------------- (1532:021F) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrnataChroma ----------------------- (1532:021E) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrochi2011 ------------------------- (1532:0013) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrochi2013 ------------------------- (1532:0039) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOrochiWired ------------------------ (1532:0048) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerOuroboros -------------------------- (1532:0032) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerTaipan ----------------------------- (1532:0034) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerTartarus --------------------------- (1532:0201) 2018-02-02 16:21:01 | razer | DEBUG | Loaded device specification: RazerTartarusChroma --------------------- (1532:0208) 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.devices.getSyncEffects method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.devices.syncEffects method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.devices.enableTurnOffOnScreensaver method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.devices.supportedDevices method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.devices.getDevices method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.devices.getOffOnScreensaver method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.daemon.stop method to DBus 2018-02-02 16:21:01 | razer | DEBUG | Adding razer.daemon.version method to DBus 2018-02-02 16:21:01 | razer | INFO | Serving DBus ``` Here is what I get when I try modprobe with daemon running: ``` $ sudo modprobe -r razerkbd && sudo modprobe razerkbd modprobe: ERROR: could not insert 'razerkbd': Exec format error ``` Here are some more outputs: ``` $ lsusb Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 005: ID 04f3:2379 Elan Microelectronics Corp. Bus 001 Device 004: ID 1532:0232 Razer USA, Ltd Bus 001 Device 003: ID 0cf3:e300 Qualcomm Atheros Communications Bus 001 Device 002: ID 1bcf:2c9a Sunplus Innovation Technology Inc. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ``` ``` $ lsmod | grep razer ``` Here is what I have installed currently ``` [rasiel@rasiel ~]$ pacaur -a -Qs | grep razer local/openrazer-daemon-git 2.2.0.r11.gc557c6a-1 local/openrazer-driver-dkms-git 2.2.0.r11.gc557c6a-1 local/openrazer-meta-git 2.2.0.r11.gc557c6a-1 Meta package for installing all required openrazer packages. (Git version) local/python-openrazer-git 2.2.0.r11.gc557c6a-1 ``` If there is any way I can help, please ask me." __label__bug Repair client certificates without password "__label__bug blank edit forms fields When editing fields, fields should be pre-filled with values for editing, an empty form always appears here. Perhaps in the partial view `@include('components.form.text', [ 'field' => 'last_name' | 'object.name', 'label' => __(file.key) (default: __(""general.$field"")) 'required' => 'required' (default: '') 'icon' => 'envelop' (default: no icon displayed), 'readonly' (default: none) ]),` an option should be added with passing value values" __label__bug Migration to 7.8 fails in camunda-spring-boot 2.2 Please upgrade to camunda-spring-boot 2.3 in example "__label__bug Restarted scans will rescan hosts which already have results # Opening a new issue ___ ## Specify type: - Bug ### Bug severity (if applicable): - High ## Description: This seems like a regression. If you paused a scan with partial results, restarting the scan will rescan everything instead of resuming. ___ ## Bug Report ### Expected behavior: Resume should not rescan hosts which already have results ### Actual behavior: Rescans everything " __label__enhancement Update to Python 3 "__label__bug Cancel token doesn't unsubscribe UserDataWebSocketClient subscription Hello, It seems that calling the cancel method on the CancellationTokenSource for the UserDataWebSocketClient instance does't unsubscribe the the user subscription. I notice that when the stream drops out, I execute the cancel method and then try and reconnect using the SubscribeAndStreamAsync method on the UserDataWebSocketClient instance it throws an exception because the user is already subscribed on this line: if (_listenKeys.ContainsKey(user)) throw new InvalidOperationException($""{nameof(UserDataWebSocketClient)}: Already subscribed to user.""); try public virtual async Task SubscribeAsync(IBinanceApiUser user, Action<UserDataEventArgs> callback, CancellationToken token = default) { Throw.IfNull(user, nameof(user)); if (_listenKeys.ContainsKey(user)) throw new InvalidOperationException($""{nameof(UserDataWebSocketClient)}: Already subscribed to user.""); try { _listenKeys[user] = await _api.UserStreamStartAsync(user, token) .ConfigureAwait(false); if (string.IsNullOrWhiteSpace(_listenKeys[user])) throw new Exception($""{nameof(IUserDataWebSocketClient)}: Failed to get listen key from API.""); SubscribeStream(_listenKeys[user], callback); } catch (OperationCanceledException) { } catch (Exception e) { if (!token.IsCancellationRequested) { Logger?.LogError(e, $""{nameof(UserDataWebSocketClient)}.{nameof(SubscribeAsync)}""); throw; } } } It may be that the cancel token is not supposed to unsubscribe the user and I should just execute the StreamAsync method on the webSocket? Also, just wondering why the exception doesn't get propagated to the client. It doesn't get raised and the code just continues as if nothing happened. Is it because i'm running it on a different thread `Dim cnnTask = Task.Run(Async Sub() ConnectSocket())` ? if so, can you recommend a way that I can get exceptions raised in the client (apologies if this may be a basic question, my parallel programming experience is not great)? " "__label__enhancement Float Textures for TARGET for GPGPU computation, such as particles, we need float textures for high accuracy. In current implementation we can't compute particles... https://twitter.com/amagitakayosi/status/948593092000587776" __label__bug Command 'npm install deep-framework -g --no-bin-links --only=prod --silent --depth=0' failed 14:21:10 GMT-0400 (EDT) Error: Command '/Volumes/Data/Users/eugene/.nvm/versions/node/v6.11.0/bin/npm install deep-framework -g --no-bin-links --only=prod --silent --depth=0' failed in '/Volumes/Data/Users/eugene/deep-microservices-todomvc' with exit code 1 at Exec._checkError (/Volumes/Data/Users/eugene/.nvm/versions/node/v6.11.0/lib/node_modules/deepify/node_modules/deep-package-manager/lib.compiled/Helpers/Exec.js:292:21) at ChildProcess.proc.on.code (/Volumes/Data/Users/eugene/.nvm/versions/node/v6.11.0/lib/node_modules/deepify/node_modules/deep-package-manager/lib.compiled/Helpers/Exec.js:253:12) at emitTwo (events.js:106:13) at ChildProcess.emit (events.js:191:7) at maybeClose (internal/child_process.js:891:16) at Socket.<anonymous> (internal/child_process.js:342:11) at emitOne (events.js:96:13) at Socket.emit (events.js:188:7) at Pipe._handle.close [as _onclose] (net.js:497:12) __label__bug grep highlighted word not spaces around lolwut "__label__enhancement Add recommended sgminer/ccminer build links Please, could you add recommended sgminer/ccminer build links, or even better, make possible to auto download them if missing?" "__label__bug windows下出错,Invalid regular expression yarn start v0.21.3 $ react-app-rewired start D:\AntDesign\react-script-antd-pro\react-script-antd-pro-master\node_modules\react-app-rewire-less-modules\index.js:51 ``` include = new RegExp(`${path.sep}src${path.sep}components${path.sep}`), ^ SyntaxError: Invalid regular expression: /\src\components\/: \ at end of pattern at new RegExp (<anonymous>) at createRewireLess (D:\AntDesign\react-script-antd-pro\react-script-antd-pro-master\node_modules\react-app-rewire-less-modules\index.js:51:13) at Object.<anonymous> (D:\AntDesign\react-script-antd-pro\react-script-antd-pro-master\node_modules\react-app-rewire-less-modules\index.js:94:20) at Module._compile (module.js:643:30) at Object.Module._extensions..js (module.js:654:10) at Module.load (module.js:556:32) at tryModuleLoad (module.js:499:12) at Function.Module._load (module.js:491:3) at Module.require (module.js:587:17) at require (internal/module.js:11:18) error Command failed with exit code 1. ``` 能否修复下,谢谢" __label__enhancement Create N below SELECTED N "__label__bug Webserver crash on start due to port already in use I also experienced a webserver crash in a couple of occasions. Now, note... this might not be an actual issue because the internet and even the wifi in here is particularly shitty. Nonetheless, we should be able to gracefully handle this instead of producing a crash. [performous_2017-11-12-022201_Anasas copy.log](https://github.com/performous/performous/files/1464867/performous_2017-11-12-022201_Anasas.copy.log) [performous_2017-11-12-022211_Anasas copy.log](https://github.com/performous/performous/files/1464872/performous_2017-11-12-022211_Anasas.copy.log) " __label__enhancement Add option to retain old versions (both packages and their metadata) "__label__bug Result code 180 při zrušení masterpass platby Dobrý den, při zrušení mpass@shop uživatelem brána na finish request někdy vrací divný result code 180 - operation not allowed. Jindy vrací result code 270 - mpass canceled by user který bych očekával. Je to správné chování? A pokud ano, mohli byste to zdokumentovat? Požadavek např. `POST masterpass/basic/finish 200 {""merchantId"":""M1E3CB0860"",""payId"":""c1d2a3eed7b4eCK"",""callbackParams"":{""mpstatus"":""cancel""}} {""payId"":""c1d2a3eed7b4eCK"",""resultCode"":180,""resultMessage"":""Operation not allowed""}`" __label__enhancement Konvertere nav-frontend-js-utils til TS __label__enhancement drag animations are still a bit rough "__label__bug [TW-1] Recurring task message on the same task _Profpatsch - says:_ Let the pictures speak for themselves: !http://i.imm.io/1moMR.jpeg! Yep, it’s five instances of the same recurring task I am deleting and no sir, I don’t want to be asked about the same task every time." "__label__enhancement Events mit fehlenden Start und od. Endzeiten Hallo Events mit fehlenden Start und od. Endzeiten nicht ignorieren, ev. über die Settings steuern :-) siehe http://forum.iobroker.net/viewtopic.php?f=8&t=11343 Danke LG Chris" __label__enhancement Resource manager Have a generic class that allows for files to be loaded rather than having resource loading scattered over multiple batch classes __label__enhancement Create systemd script Should be fairly trivial to take this from other processes that have resque and resque-scheduler (cough dpn cough) "__label__bug Overflow in code blocks <img width=""980"" alt=""screen shot 2018-02-04 at 5 06 57 pm"" src=""https://user-images.githubusercontent.com/31465/35784577-fd32c1c0-09cd-11e8-9300-69f8dea8a2c4.png""> Looks like recent CSS changes broke this" "__label__enhancement Add an updates/edits section in the yaml front-matter In the future, some posts may have to be updated (for instance, to let it work with updated version of numerical tools). I think e should keep track of these changes. " "__label__bug ui: nodes sometimes appear as suspect when the cluster is healthy This seems to be a known bug that we should find a way to improve, since it confuses users who see suspect nodes, expect something to be wrong, but nothing is wrong with the cluster. Stability of the cluster is an important value prop for us, so we should make sure not to confuse our users. This issue has come up in the following issues: https://github.com/cockroachdb/cockroach/issues/17775, https://github.com/cockroachdb/cockroach/issues/17132 " __label__enhancement Add docs for disableMultiItemCreate "__label__enhancement ""Ding"" before announcement starts To capture passengers' attention before important information is dictated. Only one ding would be necessary at the beginning of a sequence of departures if they are triggered at the same time. [Here's an example.](https://youtu.be/JR-0ZyE70B4?t=27s)" "__label__bug [TW-1420] Modifying 'uuid' fails to generate error _Paul Beckingham on 2014-09-22T20:55:01Z says:_ Modifying uuid is not allowed, but no error is generated, and it appears to work, although doesn't. Thanks to Black Ops Testing." "__label__enhancement Port the simulation to a 2D environment What logic needs to be modified to work in the new context? - [x] bubble needs to show a ""y"" input - [x] canvas should show the y axis - [x] signatures taking only ""x"" should in most/all cases handle y too - [x] 2D doesn't need a visualization of the origin (at least not as a tick on a line) - [x] range visualization (orange bar) needs to be a circle - [x] height of a generation panel is bigger in 2D - [x] algo to find new position is different (center of smallest circle) - split `calculator.js` into `calculator1d.js` and `calculator2d.js`, logic is distinct between the two - [x] command input needs to add ""y"" parameters - [x] save input broken (1d & 2d)" "__label__bug user.emailVerified is not set to false when user.email changes ### Issue Description When a user has verified their email, and then change it, the field emailVerified is still true. ### Steps to reproduce One user set their email. `user.email = aaa@aaa.aa;` They clicks on the link to verify the email. `user.emailVerified = true;` They changes their email. `user.email = bbb@bbb.bb; user.emailVerified = true;` #### Expected Results I was expected emailVerified to become false again. ### Environment Setup - **Server** - parse-server version 2.7.1 ### How to handle it It might not be required by everyone, so I wanted to solve that issue inside the `beforeSave` of `Parse.User`, something like: ``` if (request.object.dirty('email') && !(request.original && request.original.get('email') === request.object.get('email'))) { request.object.set('emailVerified', false) } ``` Unfortunately, the `user.emailVerified` field is protected, you need the masterKey to update that field. Maybe I have to call `user.save({ emailVerified: false }, { useMasterKey: true })` inside user beforeSave but I don't like the idea (infinite loop). Maybe we could only require masterKey for setting emailVerified to true? Thanks!" __label__enhancement normalizerace: include hometown in race results This is to support MD RRCA standards for race result reporting. __label__bug Users/Veeam override switch doesn't work in the intended way Seems to override it to enable it but not give the ability to disable it. __label__bug [CraftTweaker] Output syntax connot be null __label__enhancement Add pool Would it be possible to add this pool? https://www.mining-dutch.nl/ "__label__bug Fix bad synthesis count with last backend version The live synthesis count is no longer good, it must be reviewed in order to display the correct number of hosts per state" "__label__question Preserve Table of Contents in isolation view Is there a way to preserve the table of contents? I would like TOC to remain fully populated, even when in isolated view. Using [better-react-spinkit](http://better-react-spinkit.benjamintatum.com/) as an example... ![toc](https://user-images.githubusercontent.com/734535/35596981-228036ac-05d1-11e8-88c8-3c53043aa7e4.gif) In my project, I am basically trying to make the table of contents become the links to the isolated pages. The index page would be blank. The table of contents becomes the primary means for navigating the full list of components. Is this possible?" "__label__bug Error with comments on single.php Firstly, I've just started migrating from Bones to Plate, thanks for keeping it going and now making it your own, the updates you have done are much appreciated. Secondly, I think I've discovered an issue with comments when viewing single.php. Testing with fresh 4.9.4 Wordpress and fresh Plate clone. Where the comments should be is: `Warning: call_user_func() expects parameter 1 to be a valid callback, function 'template_comments' not found or invalid function name in /Users/james 1/Dropbox/Websites/acaciabeauty/wp-includes/class-walker-comment.php on line 174` Screenshot - http://take.ms/8Go9cS I've tried removing some of the comment related stuff in functions.php but thats not it." "__label__bug Cerebrales locos Los cerebrales suelen disparar a la nada de vez en cuando. ![2015-12-10_12 38 50](https://cloud.githubusercontent.com/assets/16198137/11727189/896cedb8-9f50-11e5-812d-2b79a1980bea.png) ![2015-12-10_12 39 00](https://cloud.githubusercontent.com/assets/16198137/11727191/8b082ed0-9f50-11e5-8621-bf0f0d699904.png) ![2015-12-10_12 39 24](https://cloud.githubusercontent.com/assets/16198137/11727192/8f20abaa-9f50-11e5-9e2a-aefb24c0d99b.png) A no ser que eso sea normal, no me molestaré con tener que atacarlos así xd " __label__enhancement Find solution for Euler problem 38 "__label__question Question: STS usage - getting federation token Hey guys, first, thanks for this tool, I find it really nice. My problem: in my application, I have an API that is supposed to return a set of temporary credentials with specific limited access. For that, my code will try to get a federation token from STS. But because I'm logging in to AWS through a temporary set of credentials already, I'm not authorized to get a federation token. Do you have any way to make this work? that basically prevents me to run this bit of functionality from my local setup thanks" __label__bug Undo stack reset Some operations might crash the undo-redo-stack. E.g. a new video is loaded or trajectories are loaded (upcoming feature). These will reset the trajectory memory which will become inconsistent with the stack. "__label__bug Assert during CompileHelper construction on remote worker There's an assert (and potential access violation) when a CompileHelper is constructed on a remote worker: Singleton<FBuild>::Get() Line 54 ObjectNode::CompileHelper::CompileHelper(bool handleOutput) Line 2043 ObjectNode::BuildFinalOutput(Job * job, const Args & fullArgs) Line 2004 ObjectNode::DoBuildWithPreProcessor2(Job * job, bool useDeoptimization, bool stealingRemoteJob, bool racingRemoteJob) Line 519 ObjectNode::DoBuild2(Job * job, bool racingRemoteJob) Line 276 JobQueueRemote::DoBuild(Job * job, bool racingRemoteJob) Line 322 WorkerThreadRemote::Main() Line 60 WorkerThread::ThreadWrapperFunc(void * param) Line 112 ThreadStartInfo::ThreadStartFunction(void * userData) Line 83 ``` ObjectNode::CompileHelper::CompileHelper( bool handleOutput ) : m_HandleOutput( handleOutput ) , m_Process( FBuild::Get().GetAbortBuildPointer() ) , m_OutSize( 0 ) , m_ErrSize( 0 ) , m_Result( 0 ) { } ``` The FBuild singleton is never constructed within an FBuildWorker instance (as far as I can tell) hence FBuild::Get() fails with an assert (under a debug build)." "__label__bug Usage chart is not updated when there is not cost update Precondition: - A default usage is defined for the quote - All costed resources are independent of the usage (fixed price) When another default usage is selected, the cost does not vary (as expected), but the usage chart still display the previous rate. Expected: The chart must reflect the current rate." "__label__enhancement Ajout des MP Pour l'instant les attributs _mp et _mpMax sont déclarés et utilisé mais jamais initialisé. Le constructeur de creature de les prend pas en compte, comme ceux de Hero et NpcInstance. De ce fait ""calculateAllStats"" lance une exception." "__label__bug The platform is unable to ""upload""/pick-up the same file more than one time in a row, even if the file's content gets changed. **How to reproduce this issue?** - Upload a file by choosing any one of the feature which requires the user to select a file as an input, say - ""Conversion from FASTQ to FASTA"". After the file is converted and downloaded, try to upload it once again. This time the file would not be ""uploaded"", even if its file's content gets changed." __label__enhancement sample code for aframe and threejs "__label__bug Traceback on stickers display ## Steps to reproduce 1. Navigate to a Sample or Analysis Request. 2. Press any of the stickers buttons available ## Current behavior ``` https://localhost:8080/senaite/clients/client-3/H2O-0007/sticker Traceback (innermost last): Module ZPublisher.Publish, line 138, in publish Module ZPublisher.mapply, line 77, in mapply Module ZPublisher.Publish, line 48, in call_object Module bika.lims.browser.stickers, line 90, in __call__ Module bika.lims.browser.stickers, line 348, in _resolve_number_of_copies TypeError: range() integer end argument expected, got str. ``` ## Expected behavior Stickers preview is displayed without traceback " __label__bug Handle 404 on Articles https://www.smooth-code.com/articles/xxx This url should return a 404. "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/fpUn_HC5AXgZa-8jwjKoK27nO4riiDX8wu54iylXcVETEaB4QhlPU8DLxdYg7Mx10/bRSF7tdVs9POB-IS0EobsNW15-3fSjbiVvKt8P5yPn8DFutqEKHjgepre6PdYBtZ0/rd5L5lOoZY_ixgJY_1B_DDcq4nFqyJde831gBm6Rmik1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug [TW-443] Recurrence.indicator column too wide _Max Muller on 2013-02-24T17:03:39Z says:_ When displayed in task reports, the recurrence.indicator column should only be a single character wide (that is, assuming that the recurrence.indicator parameter is set to the default of R, and the corresponding label is also set to R (which both of mine are). In practice, however, the column appears in variable widths, the logic of which I can't figure out. In the picture I've attached, to demonstrate the problem, the column appears to be 3-4 characters wide, wasting valuable horizontal space. I've also noticed that this doesn't seem to happen as much (or at all?) with narrow reports that down't take up the whole screen width--in those cases the column appears correctly, one character wide. I believe this to be a bug in taskwarrior report rendering and it only seems to affect the recurrence.indicator column." "__label__bug Setting ldapIgnoreNamingRules does not wrong ### Steps to reproduce 1. Set config.php `'ldapIgnoreNamingRules' => true,` 2. Add throw exception to see the value in log ### Expected behaviour https://github.com/nextcloud/server/blob/66a5a45c503269699666df61c605d67f3c72c7c0/apps/user_ldap/lib/Access.php#L1252 should be `true`. ### Actual behaviour Not `true` (Seems to be `null`) ### Server configuration **Operating system**: alpine **Web server:** nginx **Database:** SQLITE **PHP version:** 7 **Nextcloud version:** Nextcloud 12.0.3 **Updated from an older Nextcloud/ownCloud or fresh install:** Fresh install **Where did you install Nextcloud from:** linuxserver/nextcloud docker **Signing status:** <details> <summary>Signing status</summary> ``` N/A ``` </details> **List of activated apps:** <details> <summary>App list</summary> ``` If you have access to your command line run e.g.: sudo -u www-data php occ app:list from within your Nextcloud installation folder ``` </details> **Nextcloud configuration:** <details> <summary>Config report</summary> ``` <?php $CONFIG = array ( 'debug' => true, 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'trusted_domains' => array ( 0 => '192.168.1.95:8443', ), 'overwrite.cli.url' => 'https://192.168.1.95:8443', 'dbtype' => 'sqlite3', 'version' => '12.0.3.3', 'installed' => true, 'ldapIgnoreNamingRules' => true, 'ldapProviderFactory' => '\\OCA\\User_LDAP\\LDAPProviderFactory', ); ``` </details> **Are you using external storage, if yes which one:** No **Are you using encryption:** No **Are you using an external user-backend, if yes which one:** LDAP #### LDAP configuration (delete this part if not used) <details> <summary>LDAP config</summary> ``` N/A ``` </details> ### Client configuration **Browser:** N/A **Operating system:** N/A ### Logs #### Web server error log <details> <summary>Web server error log</summary> ``` N/A ``` </details> #### Nextcloud log (data/nextcloud.log) <details> <summary>Nextcloud log</summary> ``` N/A ``` </details> #### Browser log <details> <summary>Browser log</summary> ``` N/A ``` </details> " __label__bug Error: Debug Failure. False expression. in `tryReuseStructureFromOldProgram` during `getApplicableRefactors` tsserver version: 2.6.1 hitting sessions: 3003 stack: ``` Error: Debug Failure. False expression. at tryReuseStructureFromOldProgram (tsserver.js:59129:22) at Object.createProgram (tsserver.js:58930:34) at synchronizeHostData (tsserver.js:79707:26) at Object.getProgram (tsserver.js:79742:13) at ConfiguredProject.Project.updateGraphWorker (tsserver.js:83016:53) at ConfiguredProject.Project.updateGraph (tsserver.js:82966:39) at ConfiguredProject.updateGraph (tsserver.js:83248:53) at ConfiguredProject.Project.getLanguageService (tsserver.js:82702:26) at IOSession.Session.getApplicableRefactors (tsserver.js:86474:32) at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (tsserver.js:85436:61) at tsserver.js:86669:88 at IOSession.Session.executeWithRequestId (tsserver.js:86660:28) at IOSession.Session.executeCommand (tsserver.js:86669:33) at IOSession.Session.onMessage (tsserver.js:86689:35) at Interface.<anonymous> (tsserver.js:87881:27) at emitOne (events.js:96:13) at Interface.emit (events.js:191:7) at Interface._onLine (readline.js:241:10) at Interface._normalWrite (readline.js:384:12) at Socket.ondata (readline.js:101:10) at emitOne (events.js:96:13) at Socket.emit (events.js:191:7) at readableAddChunk (_stream_readable.js:178:18) at Socket.Readable.push (_stream_readable.js:136:10) at Pipe.onread (net.js:560:20) ``` __label__enhancement Arbitrary.noShrink Add a noShrink method to Arbitrary base class in order to be able to idle a shrinker "__label__bug Link tracking breaks URLs containing & <!-- Thanks for taking the time to file an issue! The Mailspring community uses GitHub issues to coordinate develpoment. If you have question about Mailspring or a problem with your email account, search the Knowledge Base to see if it's addressed there. If it's not, join our Slack organization and ask the community: - http://support.getmailspring.com/hc/en-us/ - https://join-mailspring-slack.herokuapp.com/ Our team tries to respond to all GitHub issues. To make sure your issue is actionable, try to include the following information: --> ##### Are there any related issues? <!-- Try searching for both open and closed issues here: https://github.com/Foundry376/Mailspring/issues?q=is%3Aissue. Keep in mind that email features are often described differently on different platforms. (Conversations == threads, shortcuts == hotkeys, etc.) --> Not that I can find. ##### What operating system are you using? Windows 10 Pro N 1709 ##### What version of Mailspring are you using? 1.0.10-d250d253 -- **Bug?** ##### Do you have any third-party plugins installed? If so, which ones? No ##### Is the issue related to a specific email provider (Gmail, Exchange, etc.)? No ##### Is the issue reproducible with a particular attachment, message, signature, etc? <!-- Try to provide an example as a file attachment or a screenshot. --> No idea -- **Feature Request?** ##### Does this feature exist in another mail client or tool you use? I hope not. Forwarding Emails which include links to sensitive things with Link and Click tracking disabled alters the link to change & to &%3B. This completely destroys the URL as it was never intended to be linked in that way. Also, adding &recipient to the end of the URL is rather rude.. They shouldn't know if I'm forwarding the link onto someone else and neither should it be yours! Sensitive Information changed to 0. Original Link: https://portal.bitency.nl/backoffice/Klanten/betalen/?payment=F00000000000&key=d0000000000000000000000000000000&lang=EN Link Received: https://portal.bitency.nl/backoffice/Klanten/betalen/?payment=F00000000000&%3Bkey=d0000000000000000000000000000000&%3Blang=EN&recipient=emailaddress%40gmail.com No idea why any email client would do this except to try and redirect links through to them?? I'm probably uninstalling now as if I can't trust the links I send as they appear in my outbox fine!" __label__bug Fix missing/wrong OAuth connector "__label__bug Backed up files missing in restore <!-- Thank you for taking the time to submit an issue using this template. By following the instructions and filling out the sections below, you will help the developers get the necessary information to fix your issue. You may remove sections that aren't relevant to your particular case. You can also preview your report before submitting it. --> <!-- Love Duplicati? Please consider supporting our collective at https://opencollective.com/duplicati/donate. --> <!-- Please search to see if an issue has already been created for your report. --> <!-- Replace the empty checkbox [ ] below with a checked one [x] if you already searched for duplicate bugs. --> - [x] I have searched open and closed issues for duplicates. ---------------------------------------- ## Environment info <!-- Please include some relevant information about your environment. --> <!-- For ""Backend"", please indicate the backup destination (e.g. Amazon S3, OneDrive, FTP, WebDAV, local). --> - **Duplicati version**:2.0.2.1_beta_2017-08-01 - **Operating system**: Windows Server 2012 - **Backend**: gcs ## Description <!-- Describe the issue that you are experiencing below. --> Using Duplicati.Commandline.exe to perform an initial backup and restore to test, the restored files are less than what was backed up. Duration of backup: 20:55:25 Remote files: 6291 Remote size: 153.63 GB Files added: 549588 Files deleted: 0 Files changed: 0 Data uploaded: 153.63 GB Data downloaded: 114.85 MB Backup completed successfully! Restore started at 11/21/2017 4:53:31 PM Checking remote backup ... Listing remote folder ... Searching backup 0 (11/21/2017 12:35:25 AM) ... 549336 files need to be restored (182.18 GB) I need to understand why all files would not be restored, and how to restore them all. If there is any other info you need, let me know " "__label__enhancement Enable combining certain tasks on travis It would be nice if we could specify certain tasks that should be combined into a single travis job. This would be useful for tasks that are dominated by startup time like dartfmt, and would help speed up presubmits." "__label__bug ios 打开拦截器读取本地的gif图片不会动 ### 简略的描述你的问题。 关闭拦截器调用本地的资源路径的gif图片,gif不会动。 打开拦截器调用调试服务器上的gif是可以动的。 代码如下: ``` <image class=""messageEgg"" src=""bmlocal://assets/index/egg@2x.gif"" @click=""annualBegin""></image> ``` ### 环境信息 > 例子: > * 开发平台:mac > * node 版本:v7.2.0 > * npm 版本:5.6.0 > * 调试类型:模拟器/真机都是 > * 调试系统版本: ios 全版本 (android 没看) > * 开发工具及其版本 xcode 9 ### 尽可能写下你对问题的分析,你觉得可能是由于什么造成的。 > 例: gif的原理是图片叠加, ios中单单用imageWithContentsOfFile 应该只会读出gif的第一张 -->WXImgLoaderDefaultImpl ``` NSString *imgPath = [NSString stringWithFormat:@""%@/%@%@"",K_JS_PAGES_PATH,imgUrl.host,imgUrl.path]; UIImage *img = [UIImage imageWithContentsOfFile:imgPath]; NSError *error = nil; .... ``` 建议针对.gif后缀的图片进行特殊处理。 ### 什么场景下会复现这个问题,复现率是多少。 > 例:百分百复现,调用即复现。 " "__label__bug Manage correctly empty repositories Instead of throw the next error: `level=error msg=""unable to process repository"" err=""repository has no HEAD` we should manage correctly empty repositories. Some examples: - https://github.com/OmniSharp/OmniSharp - https://github.com/fossasia/libregraphics.asia" "__label__bug [TW-976] Can't Add Task with Tag? _Michelle Crane on 2010-10-18T09:55:59Z says:_ Just started using the 1.9.3 beta. Wanted to see if I could use something like (at)waiting as a tag. Fail. So, tried to use +waiting. Noticed that I can add +waiting after the task has been completed, but I can't add it when I create the task. See trace: <pre> F:\Dropbox\My Dropbox\TextFiles>t add testing Created task 69. F:\Dropbox\My Dropbox\TextFiles>t 69 +waiting Modified 1 task. F:\Dropbox\My Dropbox\TextFiles>t add testing +waiting Cannot add task because the uuid '7631d451-db8d-ad54-1e1f-955179f5c4f3' is not unique. F:\Dropbox\My Dropbox\TextFiles>t add fjdaklf;djask; +waiting Cannot add task because the uuid '7631d451-db8d-ad54-1e1f-955179f5c4f3' is not unique. F:\Dropbox\My Dropbox\TextFiles>t add bob +hello Cannot add task because the uuid 'aeed64e5-ad25-a8b8-8368-fa46f9439b13' is not unique. F:\Dropbox\My Dropbox\TextFiles>t add +hello bob Cannot add task because the uuid 'd19c796a-afd7-1d18-ba1a-bc52b2d88795' is not unique. F:\Dropbox\My Dropbox\TextFiles> </pre>" "__label__bug Limit the displaying size of avatars … … in the nested and linear view of a thread. Actually an avatar gets displayed in it's pysical size , but that might be to big." "__label__bug Things overlap buttons with a large number of things It would be nice if we handled a large number of things on the things screen a bit better. Currently if you have a very large number of things they overlap with the menu button, add button and wordmark. It's not too bad because the buttons are on top and the wordmark is underneath so all the functionality still works. it just looks bad. 480x800: ![screen shot 2018-01-26 at 19 20 59](https://user-images.githubusercontent.com/552417/35456783-9a44082c-02ce-11e8-866e-dc59c1a18446.png) 320x480: ![screen shot 2018-01-26 at 19 24 53](https://user-images.githubusercontent.com/552417/35456792-a2884ad4-02ce-11e8-90b5-71246def506f.png) I'm not sure of the best design to solve this. One option would be having a single row of things scrolling horizontally, but that's a bit wasteful on a large screen. Will play around with some designs." "__label__bug Launch Kite does not work @abe33 when I click on launch kite nothing happens, is there a way that I can get some error messages to help debug this?" __label__enhancement Cluster monitor At some point integrating a feature to intermittently query the LDAP server to make sure it's still active should be added __label__enhancement [TW-497] address book export _David Patrick on 2009-07-07T14:04:53Z says:_ all (or selected) contact data exported to pdf and ready to print a good-looking address book. "__label__enhancement add log table for commands executed use logger to collect command usage into table. use example from wuwatch.py need to create a logging handler, to put into the database " "__label__enhancement Divider at the wrong position after entropy-analysis. How to reproduce this issue? - Upload a file for entropy analysis. Screenshot - ![screenshot](https://user-images.githubusercontent.com/14831291/35622549-3b605584-06ae-11e8-9292-b4e9144bb133.GIF) @MAZHARMIK - Instead of creating a divider after each text with style - 'open-sans-sans-serif-text' (as you have done in this PR - https://github.com/gbelwariar/Microbiome-Diversity-Inspector/commit/4d869c7b61ad78bacee680e05cca55873ec393fd), maybe you can use **\<hr\>** tags and associate them with a CSS selector (for an example, see - https://codepen.io/ibrahimjabbari/pen/ozinB). This would also fix [this issue](https://github.com/gbelwariar/Microbiome-Diversity-Inspector/issues/64) easily. " __label__enhancement Make links customizable (and save them in the cookies? ) __label__bug GVRPanoramaView: Fullscreen button does not show if the Cardboard button is enabled in config Code for GVRPanoramaView initialization: ``` self.panoramaView = [[GVRPanoramaView alloc] init]; self.panoramaView = self; ``` --- with ``` self.panoramaView.enableCardboardButton = YES; self.panoramaView.enableFullscreenButton = YES; ``` The above code shows only VR/Cardboard button --- with only ``` self.panoramaView.enableFullscreenButton = YES; ``` The above code shows FullScreen button --- How do I get both FullScreen as well as VR/Cardboard button? This is happening in the sample app too. __label__enhancement Preload images next few pages Time: 2 Hours Description: Create Backend that will serve multiple comics at once Acceptance: (Apparent) Latency free webcomic viewing. __label__bug Throwable: Do not call synchronous refresh under read lock (except from EDT) - this will cause a deadlock.. https://sentry.io/francis-nixon/intellij-dlang-main/issues/447928522/ ``` Throwable: Do not call synchronous refresh under read lock (except from EDT) - this will cause a deadlock if there are any events to fire. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:136) at com.intellij.openapi.vfs.newvfs.RefreshQueueImpl.execute(RefreshQueueImpl.java:60) at com.intellij.openapi.vfs.newvfs.RefreshSessionImpl.launch(RefreshSessionImpl.java:115) at com.intellij.openapi.vfs.newvfs.RefreshQueue.refresh(RefreshQueue.java:58) at com.intellij.openapi.vfs.newvfs.RefreshQueue.refresh(RefreshQueue.java:44) ... (37 additional frame(s) were not displayed) Do not call synchronous refresh under read lock (except from EDT) - this will cause a deadlock if there are any events to fire. ``` "__label__bug Keemei is by an 'Unverified developer' on Google I recently did a security checkup with Google, and got the following warning: ![keemei_warning](https://user-images.githubusercontent.com/10355152/35294907-91ca877e-002c-11e8-9c52-be53b4b969ea.PNG) Can we become a verified developer so that folks don't get this warning? P.S. Mailchip (a very big company) was also listed as an unverified developer so maybe this is fine. 🤷 " "__label__bug [TW-28] Inserts spaces before punctuation characters _Matt Kraai says:_ When I run ""task add foo\'s bar."" using the head of the 2.0.0 branch, the description of the new task is ""foo 's bar ."".`" "__label__bug Stalemate Feature - En Passant King movement not possible. All other pieces movement is also not possible. But pawn movement is possible due to **en passant**, the game is over due to stalemate. Test Case **game8** of StalemateTest.java" "__label__bug Not able to click on Search Button in SwitchRequest Test Cases After providing date value, the calendar pop up is overlapping with Search button, hence not able to click on that." __label__enhancement Add script and external variables to the SVG export of a BpmProcessInstance "__label__bug ""Actual Size"" zoom option missing on macOS With RStudio v1.1, it's possible to set an 'actual size' zoom level with <kbd>Cmd+0</kbd>. This is now missing in the v1.2 branch. In addition, performing a zoom forces a full reload of the RStudio UI; we should see if we can get by without performing a full reload with QtWebEngine." "__label__bug [TW-1720] CmdContext uses a mix of both throw and std::cout to convey errors _Paul Beckingham on 2015-10-28T20:42:52Z says:_ The `context` implementation should be consistent, about sending errors to `std::cout` or `std::cerr`. See `class ContextErrorHandling` in `context.t` for inconsistencies." "__label__bug Remove ""Start bundle..."" and ""Finish bundle..."" logging In AsyncDoFn each bundle's start and finish are logged, which makes logs very verbose (and expensive). Proposal: [Start bundle...](https://github.com/spotify/scio/blob/5d34eaae1b3347e751278ebf902910f6434ea6e7/scio-core/src/main/java/com/spotify/scio/transforms/AsyncLookupDoFn.java#L99) and [Finish bundle...](https://github.com/spotify/scio/blob/5d34eaae1b3347e751278ebf902910f6434ea6e7/scio-core/src/main/java/com/spotify/scio/transforms/AsyncLookupDoFn.java#L176) to be removed or logged at DEBUG level. For reference, the [default log level in Dataflow](https://cloud.google.com/dataflow/pipelines/logging#SettingLevels) is `INFO` " "__label__enhancement [TW-1272] Display task and project duration as a column _Renato Alves on 2014-02-21T16:07:38Z says:_ Currently there's no way to calculate task and project duration without relying on external scripts if start/stop times are edited. Since time tracking is going to be rewritten as part of TW-1270, consider including a ""`duration`"" column. If this column is used on task based reports such as `task all`, it will display duration per task. If used on `task projects` display the cumulative duration of all tasks, i.e. the project duration." __label__enhancement Release of 2.0.2 modules __label__enhancement merging strategy https://github.com/jpex-js/vue-inject/issues/16#issuecomment-362374922 "__label__bug ""Error: Unknown error encountered while generating HTML."" I get this error on the latest app store version. I tried downloading the docsets by airdrop, itunes and ifunbox. I tried having the mac version generate the docset and I tried it without the docset generating. I only get the error on some entries. For instance ""Collection"" protocol and ""Comparable"" protocol. These seem to be in the Swift standard library documentation. Anyone else seeing this?" "__label__bug DefaultLogTest.java:89-92: The commit XML should be... The puzzle `36-be35116a` from #36 has to be resolved: https://github.com/llorllale/gitlog-maven-plugin/blob/26378d3fd30f525e9f229614d03b8ac56c4bcefc/src/test/java/org/llorllale/mvn/plgn/gitlog/DefaultLogTest.java#L89-L92 The puzzle was created by George Aristy on 08-Feb-18. Estimate: 30 minutes, role: IMP. If you have any technical questions, don't ask me, submit new tickets instead. The task will be ""done"" when the problem is fixed and the text of the puzzle is _removed_ from the source code. Here is more about [PDD](http://www.yegor256.com/2009/03/04/pdd.html) and [about me](http://www.yegor256.com/2017/04/05/pdd-in-action.html)." "__label__bug Layout home (PH) Bild oben - wenn hier das Biber logo wieder rein soll, dann Bilddaten zusenden Box. Ankündigung: schöner wäre es die einzelnen Ankündigung in der Box ohne Rahmen darzustellen und dafür das Datum davor zu schreiben , somit wäre ebenfalls eine Struktur zu erkennen. " "__label__bug Can't add shouldNotReceive to a composite expectation Using PHPUnit 7.0. I have a few chunks of code that as I understand it, should work the same. ``` $mockClient = Mockery::mock(Client::class); $mockClient ->shouldReceive('connect')->once()->andReturn(false) ->shouldNotReceive('publish') ->shouldNotReceive('close'); ``` ``` $mockClient = Mockery::mock(Client::class); $mockClient->shouldReceive('connect')->once()->andReturn(false); $mockClient->shouldNotReceive('publish'); $mockClient->shouldNotReceive('close'); ``` ``` $mockClient = Mockery::mock(Client::class); $mockClient ->shouldReceive('connect')->once()->andReturn(false) ->shouldReceive('publish')->never() ->shouldReceive('close')->never(); ``` The top example fails with the following error: `ErrorException : call_user_func_array() expects parameter 1 to be a valid callback, class 'Mockery\Expectation' does not have a method 'shouldNotReceive'` The bottom two examples, both work, and my test pass successfully. Any ideas what's going on here?" __label__bug Comment timestamps are incorrect "__label__enhancement Users who are part of organization should get automatic access to all the project under that org <!-- Thanks for reporting issues back to Hiptest! This is the bug tracker for Hiptest platform. If you have any issues with the hiptest-publisher, go check its own issue tracker (https://github.com/hiptest/hiptest-publisher/issues) To make it possible for us to help you please fill out below information carefully. --> ### Steps to reproduce 1. Invite user/s to organization under https://hiptest.net/app/organizations/xxxx 2. User accepts the invite and be part of that org. 3. Now create project under that organization ### Expected behaviour 1. newly created project should be shared with all the users under that particular organization. 2. This is quite confusing that one needs to invite already existing users under org to a project. ### Actual behaviour 1. Newly created project is not shared with anyone except the current user ### My configuration **Browser:** NA **Operating system:** NA " "__label__enhancement Change FONT and CHAR, add ATTR Use same current attributes for text and cell commands. Sets attributes for following cell/text commands. f is a filter, so only selected attributes change. ATTR a [,f] FONT sets char offset only. Integrate char parameter into CELL: CELL x,y [,c] Omit c to change attributes only Fills cells with current attributes and given character: BG FILL 10,10 TO 20,20 [CHAR 7] Omit CHAR to change attributes only. Insert STEP to make it more readable: BG SCROLL 10,10 TO 20,20 STEP 10,10" "__label__bug Build picks preinstalled libqpdf.so over the locally built one I had qpdf-6.0.0 installed, and the build of 7.1.0 was failing: ``` /bin/sh ./libtool --mode=link c++ -O2 -pipe -fno-omit-frame-pointer -fstack-protector -isystem /usr/local/include -fno-strict-aliasing -fno-omit-frame-pointer -isystem /usr/local/include -std=gnu++98 -Wold-style-cast -Wall libtests/build/concatenate.o -o libtests/build/concatenate -ljpeg -lz -L/usr/local/lib -lqpdf -Llibqpdf/build -fstack-protector libtests/build/bits.o: In function `main': libtests/bits.cc:(.text+0x5aa): undefined reference to `BitStream::getBitsSigned(int)' libtests/bits.cc:(.text+0x617): undefined reference to `BitStream::getBitsSigned(int)' libtests/bits.cc:(.text+0x684): undefined reference to `BitStream::getBitsSigned(int)' libtests/bits.cc:(.text+0x6f1): undefined reference to `BitStream::getBitsSigned(int)' libtests/bits.cc:(.text+0x75e): undefined reference to `BitStream::getBitsSigned(int)' libtests/bits.cc:(.text+0x9fc): undefined reference to `BitWriter::writeBitsSigned(long long, unsigned int)' libtests/bits.cc:(.text+0xa11): undefined reference to `BitWriter::writeBitsSigned(long long, unsigned int)' libtests/bits.cc:(.text+0xa24): undefined reference to `BitWriter::writeBitsSigned(long long, unsigned int)' libtests/bits.cc:(.text+0xa39): undefined reference to `BitWriter::writeBitsSigned(long long, unsigned int)' ``` Newly-built files should be preferred over pre-installed ones. " "__label__enhancement CustomerEnquiryTC **Methods:** verifyCustomerEnquiry verifyAdjustment verifySericeChargeAccount verifyServiceProducts Clicking on element 'By.xpath: //tr[@id='customerSearchForm:customerSearchFBTabSet:0:customerSearchResults_row_0']' ERROR : UAVOIDABLE ERROR OCCURED.""" "__label__bug [Sélection de projets] Possibilité de créer un projet sans sélection de 2 fichiers si on clique sur le texte, on fait apparaitre le symbol ""check"" rouge et on peut cliquer sur suivant ce qui crée un projet avec un seul fichier (si l'autre sélection est valide)" "__label__bug Suboptimal display of poly-kinded data family instances involving type variables **Original reporter**: _haddock@<hidden>_ Example source code: (language extensions not included) ``` haskell data Z = ZA | ZB data family Bat (t :: k) :: * data instance Bat (z :: Z) where A :: Bat ZA B :: Bat ZB ``` This currently gets displayed like: ``` haskell data Bat Z where A :: Bat Z ZA B :: Bat Z ZB ``` Notably, the type parameter ‘z’ is absent. I tried updating the synifyFamInst code but it seems like the ‘z’ is not actually present anywhere, at least I could not see it in either fi_tvs or fi_tys. Maybe ask GHC devs about this? Anyway, it's not a major issue since it's clear from the constructors what kind the data instance is for. Note: The ‘Z’ everywhere is not a regular type parameter but rather a kind parameter. We may wish to hide these altogether or display them in a different style (like italic) to prevent possible confusion in general. I'm reluctant to remove them completely since they do carry valuable information sometimes, but to stay consistent with the behavior of GHC 7.8+ as well as Haskell source code it may be wise to distinguish them from regular type application. " "__label__bug Infinite recursion when completing the values of a dictionary The following code: ```python import jedi jedi.Script(""dict().values()."").completions() ``` raises a `RecursionError` exception in Parso (only the last lines of the traceback are pasted): ``` File ""parso\parso\python\tree.py"", line 196, in is_definition return self.get_definition() is not None File ""parso\parso\python\tree.py"", line 229, in get_definition if self in node.get_defined_names(): File ""parso\parso\python\tree.py"", line 1110, in get_defined_names return [self.name] File ""parso\parso\python\tree.py"", line 1104, in name if self._tfpdef().type == 'tfpdef': File ""parso\parso\python\tree.py"", line 1096, in _tfpdef offset = int(self.children[0] in ('*', '**')) RecursionError: maximum recursion depth exceeded in comparison ``` While this code seems convoluted, it's in fact a reduced test case of issue https://github.com/vheon/JediHTTP/issues/46. Configuration: - Windows 7 64-bit; - Jedi adace8d7cbdfcbf5171fd59bf3949a5bd8b7627c; - Parso davidhalter/parso@b076cdc12a9af2e8203cd5a625e2029955940b48; - Python 2.7.14 and 3.6.2. " __label__bug Some output is printed to stdout E.g.: 156257280 554060800 704113664 Not clear what these numbers represent (they are not PPNs) and where in the code the output is generated. __label__question disable demo content how can i disable the demo content? "__label__question Scheduling content Does ProcessWire support the scheduling of content out-of-the-box? Holidays are upon us now where we'll be out of the office at different times, this seems like a necessary level of support. " "__label__bug qgrid 1.0 not working on my windows laptop I did not managed to use it on my laptop; I therefore put back beakerx in environment.yml (still kept qgrid). I paste the error I get in case it is helpful... ``` Uncaught (in promise) Error: Script error for ""qgrid"" http://requirejs.org/docs/errors.html#scripterror at makeError (require.js:165) at HTMLScriptElement.onScriptError (require.js:1732) 2main.min.js:32607 Couldn't process kernel message Error: Script error for ""qgrid"" http://requirejs.org/docs/errors.html#scripterror at makeError (require.js:165) at HTMLScriptElement.onScriptError (require.js:1732) (anonymous) @ main.min.js:32607 require.js:165 Uncaught (in promise) Error: Script error for ""qgrid"" http://requirejs.org/docs/errors.html#scripterror at makeError (require.js:165) at HTMLScriptElement.onScriptError (require.js:1732) main.min.js:31703 Kernel: kernel_ready (4d7fc778-c6db-4f0c-8372-7848c1dcbb7d) :8891/nbextensions/beakerx/extension.js?v=20180204143443:107383 [init_cell] running all initialization cells :8891/nbextensions/beakerx/extension.js?v=20180204143443:107389 [init_cell] finished running 0 initialization cells require.js:165 Uncaught (in promise) Error: Script error for ""qgrid"" http://requirejs.org/docs/errors.html#scripterror at makeError (require.js:165) at HTMLScriptElement.onScriptError (require.js:1732) ```" "__label__enhancement Research and change if possible: Stop using content types for documents, and add fields to the list instead Thank you for reporting an issue, suggesting an enhancement, or asking a question. We appreciate your feedback - to help the team understand your needs please complete the below template to ensure we have the details to help. Thanks! #### Category [X] Enhancement [ ] Bug [ ] Question #### Environment [X] SharePoint Online [X] SharePoint 2013 [X] SharePoint 2016 #### Browser N/A #### Summary Today we are adding the project document content type to the document library in the project. The way SharePoint behaves, you then lose the possibility to add new pptx, new xlsx and so on. Let's attempt to stop using content types, and instead just add the fields directly on the list. This way we should get the best from both worlds, and I don't see any big downsides with this since we are only using a simple CT without templates anyway." __label__enhancement Implement Talon Motion Profile Configuration "__label__bug saving a database does not work when the user saves a database and opens the same database afterwards, all elements of all tables are deleted" "__label__enhancement Make mitmproxy dependency more explicit / add instructions We require [mitmproxy](https://mitmproxy.org/) and a few Python packages to be installed. Perhaps modify my mitmproxy NPM package to fail installing should these items be missing, and include instructions in BLeak / mitmproxy NPM package describing how to install these dependencies." "__label__question localization - where is upstream? Installed version 18.1.1 recently and noticed, that there are untranslated strings - and in https://github.com/teejee2008/timeshift/tree/master/po are newer .po data than on https://translations.launchpad.net/linuxmint/latest/+pots/timeshift From result of https://github.com/teejee2008/timeshift/issues/23 it seemed, that upstream translation is now in Linux Mint project. So, where to translate new strings now? Thanks :)" "__label__enhancement Render bridges of streets over each other While browsing the map I have noticed that it is not possible in the current style to see that one could not go from one street to the other as there is a bridge. The Issue can be seen here: Streetcomplete-Style: https://map-data.de/#map=19/53.63997/10.00312&style=streetcomplete-light Openstreetmaps: https://www.openstreetmap.org/#map=19/53.63997/10.00312 On a side note: The I think the gates would be a good addition to, as one can't go into the airfield. Or a little to the east: https://map-data.de/#map=19/53.63790/10.00908&style=streetcomplete-light https://www.openstreetmap.org/#map=19/53.63790/10.00908 " __label__bug WAC Community Causing Server Hangs Reinstalling all gma's to see if it fixes it. might need to remove WAC. "__label__bug Cannot use same transaction for delete and set mutations I am trying to write a transaction which deletes from a predicate of type [string], writes back to that same predicate, and then commits both at once. I have found I'm not able to do that with the library currently. What happens is, the original edge is deleted, but the subsequent one is never written. As an example, I am trying to perform these mutations: ``` const txn = client.newTxn() const mu1 = new dgraph.Mutation() mu1.setDelNquads(`<0x11194> <property.code> * .`) txn.mutate(mu1) const mu2 = new dgraph.Mutation() mu2.setSetNquads(`<0x11194> <property.code> ""LDG"" .`) txn.mutate(mu2) txn.commit() ``` If I create and commit two separate transactions rather than bundling, the written triple is visible. But if I keep it within one transaction, the result is no data left on the predicate. Am I using the library correctly? " "__label__enhancement Option to flip the menu navigation for side-mounted encoders? The mcHF v0.7 board moves the general purpose encoders to the side of the unit, which presents a point-of-view issue for navigating the menus and changing values. On all previous UHSDR builds, these encoders are oriented with the shaft pointing at the user, which turning clockwise would increase a numeric value, or navigate ""down"" in a menu. But with the shaft parallel to the user's torso and pointed toward the right, the encoders now have an experience of rotating clockwise (""up"") to increment values which makes sense, but scrolling in the menus it instead performs a down navigation event. Can this be fixed, and if so, is it best done in a mcHF v0.7 specific build, or would a new configuration option be the best way?" __label__enhancement Change relaxed policy to remove list rather than whitelisting list This will allow keyword triggers to keep functioning when the relaxed policy is being used. Currently keyword triggers are not applying since the sites in relaxed policy are getting whitelisted rather than just removed from the blacklist. Lists in Relaxed Policy need to be blacklisted until the relaxed policy is activated at which point they are simply removed from the blacklist. I believe it was done this way originally but we requested Jesse to change it to the current method. It should be changed back. "__label__bug relative finder consider using ranges instead of first char position because if we are in the middle of a item range (references, diagnostics, etc.) and you want to go to previous, it will just go to the beginning of the current item" "__label__bug Radarr Library Movies disappearing after refreshing page I am not sure but I am seeing 14 movies in my Radarr collection right now. When I click on view options including Monitored, Missing, Released, Announced, In Cinema... the movie collection doesn't change or refresh. it remains at 14 movies (like nothing was updating or change when i click. When i click on Update Library, it finally show all of the movies (140 movies) that I added to monitor then i refreshed the page and it went back to 14 movies again! what gives!?" "__label__enhancement Create `IStringFormatter` interface to standardize string representations **Background** As part of #37, we now render `IEnumerable` as strings in a manner similar to JSON arrays by default. However, the values _within_ those enumerables are rendered using the default `ToString()` implementation for that type, rather than using what has been determined as the desired way to render that type across a parent `ImmutableBase<TImmutable>`. This means a `DateTime` property will have its values rendered one way, but a `DateTime` value within an `IEnumerable` will be rendered another way. **Task** Create an `IStringFormatter` concept that can either be injected into each `IPropertyHandler` to determine how to render each type as a string, or used directly on `ImmutableBase` when rendering property values via its `ToString()` implementation." __label__bug [TW-1254] Calc command can segfault on negative numbers _Paul Beckingham on 2014-02-09T19:19:02Z says:_ This command segfaults: task calc 0*-1 This does not: task calc 0*1 __label__enhancement Créer l'application Heroku Créer l'application sur la plateforme Heroku et connecter le répertoire GitHub __label__bug Goto definition for destructuring should go to the property definition **TypeScript Version:** nightly (2.4.0-dev.20170530) **Code** ```ts interface I { x: number; } function f({ x }: I) { return x; } ``` **Expected behavior:** Goto-definition at `x` in `{ x }` should go to the property declaration. **Actual behavior:** It takes me to the beginning of the identifier that I'm already at. "__label__enhancement Add ""clean"" json Serialization to Objects I can do this myself, but it would be useful if the ToString() method was overridden for the objects to return a clean JSON string that doesn't have all of the null properties. Example is below that I used to serialize a loan to post in PostMan, without needing to remove the null properties myself. string json = JsonConvert.SerializeObject(loan, Formatting.None, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });" "__label__bug setOrder() bug for ordering class members Hey David, I discovered a bug in `setOrder()` when ordering class members. I'm basically trying to move a class's constructor below all of the class's properties. But for some reason, any argument >4 passed to `setOrder()` gives me the following error: ``` Error: Argument Error (order): Range is 0 to 4, but 6 was provided. ``` However, in my example below, there are clearly there are more than 4 class members. Give it a try: ```ts import Ast from 'ts-simple-ast'; const ast = new Ast(); const sourceFile = ast.createSourceFile( 'test.ts', ` class Something { constructor() {} propA = 1; propB = 2; propC = 3; propD = 4; propE = 5; propF = 6; propG = 7; } ` ); const myClass = sourceFile.getClasses()[ 0 ]; const ctor = myClass.getConstructors()[ 0 ]; ctor.setOrder( 6 ); // <-- Any number greater than 4 here throws an error console.log( sourceFile.getFullText() ); ``` Why any number greater than `4` specifically? Dunno :) I encountered the same error on my Angular migrator too, which also gave an error for any index > `4`, but with completely different source text. Came up with the above minimal reproduction separately. This is with the latest btw: 6.10.0" __label__bug TypeError: Cannot read property 'split' of undefined ![afbeelding](https://user-images.githubusercontent.com/6282561/34909487-64a784cc-f8a2-11e7-90bb-ee2cffd79e36.png) Running 152 SDK "__label__bug Fix hours setting When using 12h time format, the hours in notification are set wrongly (for hours 13-23)" "__label__question Mapsui standart controls. Hello. I have just started working with this component. Now I am confused because I don't see any examples of using standart map controls such as zoomcontols, maprotation, scale line and so on. Do you have any standart components over the map as other map components have?" "__label__enhancement Use geohash instead of raw location Instead of reporting on raw `lon` and `lat` coordinates, encode them as a `geohash` (cf. https://en.wikipedia.org/wiki/Geohash). Some client libraries are available for encoding it: https://github.com/search?utf8=✓&q=geohash+language%3AKotlin&type=Repositories&ref=advsearch&l=Kotlin&l=" "__label__enhancement One click ""add to Pocket"" feature #### Feature Suggestion It would be nice if I could add an article to my *pocket* app in one click for later reading, just like I can copy the link to clipboard or share it on Twitter / Facebook, etc. " __label__enhancement Créer service Utilisateur - Sauvegarde d'un utilisateur + hashage mot de passe "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/aGCu0eC6v2LlDz5fHs7s03jKIUl8vN4v_wySvDK5Tw6wIxmRh1SMcF7x5QbxNyGb0/TfJdOYwDWlVANkcRHW4dzaomELAK04q19xdSkMtnlERVHjcFsJRAKzxkrHRLqCYe0/Yw6U9RpW4k2m5o4eamLuJZpiW51KB8iZ1NnyDaizIT41) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__enhancement force option for iRODS writes Currently if we use tears to write to iRODS and a file of that name already exists we get the following error: Extra error message: Error: rcDataObjCreate failed with status -312000:OVERWRITE_WITHOUT_FORCE_FLAG Please can we have a force flag to allow us to overwrite an existing file. Thanks. __label__enhancement Replace all reducers by updaters - configure jest #1 ✅ - write reducers tests #3 ✅ - Install [redux-fp](https://github.com/rvikmanis/redux-fp) ✅ - Replace reducers by updaters (use [combine](https://github.com/rvikmanis/redux-fp/blob/master/docs/API.md#combine)) :x: "__label__bug If Garond already died before, Yussuf's blood cup quest can't be solved " "__label__bug invalid identity. assignedToFilter parameter Hi, I recently updated my displayname in VSTS. Now using the approvals command doesn't work via slack (haven't tried other channels). *Error occurred:* VS4029131: Invalid identity [old displayname] specified in assignedToFilter parameter. Make sure that the value is a valid identity ID or identity name and try again. Also, have tried uninstalling and reinstalling the bot from slack, and trying to reconnect to vsts. No luck, trying to reconnect throws a different error. When i try to reconnect, i can see my vsts instance, but trying to connect throws *Error occurred:* Value cannot be null. Parameter name: value" "__label__enhancement RFE: argparse option for cloud definition to not wipe hosts on return We can use an optional cloud definition parameter of nowipe=0/1 with a default being 1. The idea behind this is that we want an easy way to move a set of machines from one cloud to another without reprovisioning them (only VLAN / network changes occur that is necessary for moving between isolated environments). e.g. ``` quads --define-cloud cloud02 --force --description ""my new old cloud"" --cloud-owner bob --nowipe 1 ``` The default would be to wipe machines when moving to a new cloud (```nowipe 0```)" "__label__enhancement Performance #1 When `smart_genmove`/`min/max_search`, we evaluate a point twice, it is easy to fix if use a `save_state` function to return a std::unique_ptr of a state, and then `apply_state` of that specific point. Expected speedup: 1.5x~2x." __label__bug Label Height is not set when text is wrapped If you create a label with a very long string in it that wraps the height is still set to 20px. __label__enhancement Send emails asynchronously "__label__enhancement Refactor ProfileApplier Class ProfileApplier class is currently not unit testing friendly and does too much in a single method. Refactor to include unit tests and split into multiple, smaller-scoped methods. This should be done in support of issue #4." __label__bug [2.1] Output step: Background color doesn't change between buttons Seems like frame that contains buttons doesnt have a style props. "__label__enhancement Allow adding target objects or methods after listening has started I believe we should require a new property or ctor parameter to opt into the feature, since we want to avoid folks unknowingly using Attach and then adding target objects/methods and not realizing that they're introducing a race condition for incoming traffic." "__label__bug Bibliotheca: POST requests not working with Abstatt Public Library Since we switched the Bibliotheca API to using OkHttp, Abstatt Public Library (http://buecherei.abstatt.de/webopac) is complaining that the app shows a lot of error messages. If I understood this correctly, the problem is caused by this library's server sending a ""100 Continue"" status code even though we did not request that with the corresponding Header. OkHttp does not handle this correctly, but instead gives us the 100 status code with an empty body. The issue is tracked at square/okhttp#3628. Maybe we can write a PR fixing that issue. " "__label__question DietPi-Update | Fails to update if PiHole installed (fixed in v156) ## Creating a bug report/issue: I propose using IPs instead URL domains when updating. Why? Currently I have installed pihole and dnsmasq as a DNS caching server, and when the update process begins, Dietpi-update stops all running services making dietpi.com unreachable because pihole and dnsmasq are deactivated. On the other hand, I have also dnscrypt installed but I verified it and I think it's not the problem. Doing a dirty trick replacing dietpi.com with its IP address, I was able to update the system but the update zip calls again to dietpi.com (to download a new kernel for example) making an incomplete update. #### Required Information: - DietPi Version | 146 - SBC Device | RPi3 - Power supply used | RPi3 Official - SD card used | Samsung EVO - Distro (EG: Jessie) | Jessie #### Additional Information (if applicable): - Dietpi-update - Can this issue be replicated on a fresh installation of DietPi? Yes #### Expected behaviour: Update Dietpi scripts using server IP address #### Actual behaviour: dietpi.com can't be reached #### Steps to reproduce: Having pihole installed, run dietpi-update and see results #### Extra details: Can anyone check it? " "__label__bug KDB Complete: Heap Overflow # Steps to Reproduce the Problem 1. Build Elektra ```sh mkdir build cd build cmake -GNinja \ -DCMAKE_CXX_COMPILER=clang++ \ -DCMAKE_C_COMPILER=clang \ -DENABLE_ASAN=ON \ -DKDB_DB_SYSTEM=$HOME/Downloads \ -DCMAKE_INSTALL_PREFIX=$HOME/Downloads \ .. ninja ``` 2. Run the following `kdb` commands: ```sh export ASAN_OPTIONS=symbolize=1 export ASAN_SYMBOLIZER_PATH=$(which llvm-symbolizer) kdb set user/sw/elektra/examples/kdb-ls/test value kdb complete /sw/elektra/examples/kdb-complete/ --max-depth=1 ``` ## Expected Result Everything works fine ## Actual Result The last command fails producing the following error message: ``` ================================================================= ==20997==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x6040000108b5 at pc 0x0000004fdd74 bp 0x7ffc06fb5fd0 sp 0x7ffc06fb5780 READ of size 34 at 0x6040000108b5 thread T0 #0 0x4fdd73 in __interceptor_memcmp.part.68 (Build/bin/kdb+0x4fdd73) #1 0x587fc6 in bool std::__equal<true>::equal<char>(char const*, char const*, char const*) /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/bits/stl_algobase.h:814:14 #2 0x587fc6 in bool std::__equal_aux<char const*, char const*>(char const*, char const*, char const*) /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/bits/stl_algobase.h:831 #3 0x587fc6 in bool std::equal<__gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >) /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/bits/stl_algobase.h:1051 #4 0x587fc6 in CompleteCommand::filterCascading(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::pair<kdb::Key, std::pair<int, int> > const&) Elektra/src/tools/kdb/complete.cpp:358 #5 0x58b1d1 in CompleteCommand::completeNormal(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, kdb::Key const&, Cmdline const&)::$_1::operator()(std::pair<kdb::Key, std::pair<int, int> > const&) const Elektra/src/tools/kdb/complete.cpp:130:10 #6 0x58b1d1 in std::_Function_handler<bool (std::pair<kdb::Key, std::pair<int, int> > const&), CompleteCommand::completeNormal(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, kdb::Key const&, Cmdline const&)::$_1>::_M_invoke(std::_Any_data const&, std::pair<kdb::Key, std::pair<int, int> > const&) /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/functional:1716 #7 0x582121 in CompleteCommand::printResults(kdb::Key const&, int, int, Cmdline const&, std::map<kdb::Key, std::pair<int, int>, std::less<kdb::Key>, std::allocator<std::pair<kdb::Key const, std::pair<int, int> > > > const&, std::function<bool (std::pair<kdb::Key, std::pair<int, int> > const&)> const&, std::function<void (std::pair<kdb::Key, std::pair<int, int> > const&, bool)> const&) Elektra/src/tools/kdb/complete.cpp:231:19 #8 0x5870b5 in CompleteCommand::completeNormal(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, kdb::Key const&, Cmdline const&) Elektra/src/tools/kdb/complete.cpp:132:2 #9 0x58058c in CompleteCommand::complete(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, Cmdline const&) Elektra/src/tools/kdb/complete.cpp:94:4 #10 0x57fc53 in CompleteCommand::execute(Cmdline const&) Elektra/src/tools/kdb/complete.cpp:50:2 #11 0x5e58e9 in main Elektra/src/tools/kdb/main.cpp:198:11 #12 0x7efee66a72b0 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x202b0) #13 0x48e6d9 in _start (Build/bin/kdb+0x48e6d9) ASAN:DEADLYSIGNAL AddressSanitizer: nested bug in the same thread, aborting. ``` . ## System Information - Elektra Version: master - OS: [Debian Stretch](https://wiki.debian.org/DebianStretch)" __label__bug Null pointer Exeption in DeleteFromWithoutWhereCheck @ThomasPohl We are getting NPE in DeleteFromWithoutWhereCheck at line 46 FIX for this please add this condition else if (null != tree.expressionList() && tree.expressionList().parameters().size() != 0 && SyntacticEquivalence .skipParentheses(tree.expressionList().parameters().get(0)) instanceof LiteralTree) { "__label__bug Unhandled promise rejection on async plugin #### Steps to reproduce ```js const fastify = require('fastify')(); fastify .register(async (fastify, options, next) => { throw new Error('test'); }) .after(error => { throw error; }); fastify.listen(8080, error => { if (error) { throw error; } console.log('Listening at 8080'); }); ``` #### What was the result you received? The code above after running returns a `(node:21922) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.` message. #### What did you expect? I expect the `async` plugin function rejection will be handled and the error just passed so there will be no promise rejection warnings. #### Context * *node version*: 9.4.0 * *fastify version*: >=0.39.1 * *os*: Mac " __label__bug Today's statistics scrolls up on scroll __label__bug Undefined CKEditor in page-sidebars.js __label__bug OdroidC2 Wifi Hotspot unavailable AdminUI > Network > lan The `Update` button is grayed out after filling SSID and password (8+ chars) fields. __label__bug Unable to reveal box/spoilerbox's content on forum post preview ![](https://puu.sh/ziG7t/db8e6bf575.jpg) they just dont work "__label__enhancement Pagină rezultate căutare @ionutpopacivictech - Ne va trebui design și pentru pagina de rezultate după căutare, dar nu e urgent. Dacă avem design undeva pe 21 feb cred că suntem bine. " "__label__bug Value of type '[(key: AnyKey, value: Registration)]' has no member 'keys' I get this error when building on Xcode 9.2 beta, Swift Lang Version is 4.0 ```swift var matchedKeys = matched.keys Value of type '[(key: AnyKey, value: Registration)]' has no member 'keys' ``` Filter.swift, Line 18 " "__label__bug Navigator width and height of image not updated when changing images Steps to reproduce: 1. Open 1.raw, x: --, y: -- Feature request: could these be set when an image is opened without having to mouse-over the preview? 2. Mouse-over the preview to set them. 3. Switch to 2.raw. Bug: width and height have not been updated - they still show the old size." "__label__enhancement Splitting frontend/backend code in python scripts We wish to split current code into two parts: * A `python3-galternatives` library, which only deal with manipulation of Debian `alternatives` system; * Some frontend code as an application." "__label__enhancement XVA PDE Burgard Kjaer Edge _BurgardKjaerEdge_ holds the Underlier Stochastic and the Credit Risk Free Components of the XVA Derivative Value Growth, as laid out in Burgard and Kjaer (2014). The References are: - Burgard, C., and M. Kjaer (2014): PDE Representations of Derivatives with Bilateral Counter-party Risk and Funding Costs *Journal of Credit Risk* **7 (3)** 1-19 - Cesari, G., J. Aquilina, N. Charpillon, X. Filipovic, G. Lee, and L. Manda (2009): Modeling, Pricing, and Hedging Counter-party Credit Exposure - A Technical Guide *Springer Finance* **New York** - Gregory, J. (2009): Being Two-faced over Counter-party Credit Risk *Risk* **20 (2)** 86-90 - Li, B., and Y. Tang (2007): Quantitative Analysis, Derivatives Modeling, and Trading Strategies in the Presence of Counter-party Credit Risk for the Fixed Income Market *World Scientific Publishing* **Singapore** - Piterbarg, V. (2010): Funding Beyond Discounting: Collateral Agreements and Derivatives Pricing *Risk* **21 (2)** 97-102 " "__label__bug Closing modal frame should not raise Page.NavigatingFrom event ### Tell us about the problem Closing modal frame should not raise Page.NavigatingFrom event for the modal page as ""closing"" action is not associated with a navigation action. ### Which platform(s) does your issue occur on? iOS ### Please provide the following version numbers that your issue occurs with: - CLI: 3.4.1 - Cross-platform modules: 4.0 " "__label__enhancement Better message Instead of just saying `next version should be 1.22.0` it should say `next version should be 1.22.0 (1 feature, 2 fixes)` for example" "__label__enhancement [TW-507] case insensitive search _Andy Spiegl on 2012-04-16T14:03:12Z says:_ Please add a switch to allow case insensitive search Often I'd like to search for e.g. latex but don't remember whether I spelled it LaTeX, Latex, LaTex or latex. Thanks Andy." "__label__enhancement Disable notification of updates Hello, When Gesturefy is updated, a notification pop up. For me, this is useless and annoying. Could you add an option to disable it please ?" "__label__question Integrate authorizenetcim with your one-click-checkout module I am on magento 2.1.7. I can't use magento instant purchase in 2.1.7. Both your autorizenetcim and one click checkout module are working fine. My question is I don't want to use braintree payment, I want to use authorizenetcim with one click checkout. How do i replace braintree with authorizenetcim for one click checkout." "__label__bug Socket.IO - on 3 persons connected there's a glitch, so avoid that for now " "__label__enhancement Provide info on BadgeApp's REST API We use a REST API, with conventional names like /projects, /projects/:id, /projects/:id/badge, /projects/:id.json - need to document that somewhere so users can learn what's supported. " __label__enhancement Weather<-> Mongo "__label__question Redlock performance under high contention Hi @mike-marcacci, I tried to understand the redlock performance under high contention, still don't really understand. So I would be grateful if you could help me understand. I m developing a real-time collaborative writing like Google Word. In that system we have a number of NodeJS servers, and when a new user comes to the system (connected to one of the NodeJS servers), we assign unique authorship color. During that time, no matter the nodejs server, need to access the same few Redis entries to determine color. During that particular time, these Redis entries have to be RedLocked from other servers. So let's say, if 1000 users connect to different NodeJS servers at the same time, with the Redlock on the same Redis entries, do you have some idea on Redlock performance? (each connection takes ~14 milliseconds). It is also very difficult to test concurrency :( Thank you so much, really appreciate it." "__label__enhancement show error note on topic list page if topic in error On the main topic list page for a user, on any of the views (public/personal/starred), we should show an error icon on any topics that are in error state. Try putting a `ErrorNotice` under the topic title saying ""This topic has an error. Learn more"". Clicking ""Learn More"" just takes them the topic summary page so they can see the error like normal at the top of the screen. <img width=""899"" alt=""home___media_cloud"" src=""https://user-images.githubusercontent.com/673178/35392650-90d1b754-01b0-11e8-9858-75a09a81d0eb.png"">" "__label__bug Bene: Contain contact forms within body width ## Overview The contact forms are currently not contained within the bene body width. Most sites will use the standard contact us contact form, but many could add additional forms. It will be important to not make this specific to just the contact us form. ![wri-contact-form.png](https://images.zenhubusercontent.com/53050d472ff23425210002b4/1bb4bc87-fe3e-47d2-83c1-31022c6b3599)" "__label__bug Clarity Filters removing checkbox selection <!-- PLEASE FILL OUT THE FOLLOWING. WE MAY CLOSE INCOMPLETE ISSUES. --> **Select one ...** (check one with ""x"") ``` [ x ] bug [ ] feature request [ ] enhancement ``` ### Expected behavior https://vmware.github.io/clarity/documentation/v0.11/datagrid/full User has to select multiple items in table. He goes for [clrDgItem] and [(clrDgSelected)] . The table has filters implemented. The user selects first two rows, he does column filter after that. All the selections made earlier must be retained ### Actual behavior In this case all the selections are removed. ### Reproduction of behavior <!-- Include a working plunker link reproducing the behavior. --> <!-- Clarity Plunker Templates --> * Include a link to the reproduction scenario you created by forking one of the Clarity Plunker Templates: <!-- Clarity Version: [Light Theme v11](https://stackblitz.com/edit/clarity-light-theme-v11) --> <!-- Clarity Version: [Dark Theme v11](https://stackblitz.com/edit/clarity-dark-theme-v11) --> <!-- Clarity Version: [Light Theme v10](https://stackblitz.com/edit/clarity-light-theme-v10) --> <!-- Clarity Version: [Dark Theme v10](https://stackblitz.com/edit/clarity-dark-theme-v10) --> Issue can be reproduced in demo example of clarity https://vmware.github.io/clarity/documentation/v0.11/datagrid/full ### Environment details * **Angular version:** 4.x.x * **Clarity version:** * **OS and version:** * **Browser:** [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ] " "__label__bug System.InvalidOperationException: Map not ready on Android - V1.6.1 Hello, This morning I've received a new crash log from a user - cf image below. Any clue of what is going on? Is there any way to wait for a Map to be ready if it is not yet? First time I've got that exception. Thanks <img width=""983"" alt=""screen shot 2017-11-17 at 11 42 41"" src=""https://user-images.githubusercontent.com/1502008/32943696-40bad92a-cb8d-11e7-82f0-1adc4f1d40a0.png""> " "__label__question TextPath bbox width varies Posting here because stack overflow is silent about everything related to svg.js. I got the code adding the textpath (it's not clean, sorry): ``` let something = this.text(function (add) { add.tspan(...).dy(-5) }).path(path.array()).textPath(); ``` And then I need to compute the `startOffset` value for attaching my text to either start or end of the line, but I don't need the relative value in %, I need the exactly value. I also need to add some padding and it's done just like that: ``` let padding = 10; let offset_start = padding; // start of the line let offset_end = path.length() - something.bbox().w - padding; // end of the line ``` I also change the path function, but the `path.length()` is behaving absolutely correct. The problem is text `bbox().w`: ``` 33.0625 33.09375 33.21875 33.25 18.953125 19.046875 ``` So the text bbox is changing so much, but the text are the same, the path length may be the same, everything is the same but bbox. What I supposed to do?" "__label__bug RemoveArrayAction does not update child controls ID Ciao Wolfz :) I'm handling an array of entities, and I have a remove button on each entity row, so for example, when I have 3 rows I can remove the middle one, and so on. What's going on is that when I dispatch a RemoveArray action it's indeed updating the ID of the subsequents items, but not the id of their inner controls. simple example is below: 1) 3 items on array, with nested fields of Name & Surname ``` ITEM0 Name0 Surname0 ITEM1 Name1 Surname1 ITEM2 Name2 Surname2 ``` 2) we now remove ITEM1 with a Remove_Array action from the library, ITEM2 gets correctly renamed to ITEM1, but the nested fields remains the same. ``` ITEM0 Name0 Surname0 ITEM1 Name2 Surname2 ``` 3) we now add a 3rd item, it's get ITEM2, and the nested fields? guess it.. ``` ITEM0 Name0 Surname0 ITEM1 Name2 Surname2 ITEM2 Name2 Surname2 ``` This situation now leads to duplicated data, because when I modify Name on ITEM1 also modifies the one in ITEM2. Regards, Luca" __label__bug Fix code for new update on Primewire "__label__bug [pipermail] Compressed file ended before the end-of-stream marker was reached Trying to analyze the pipermail url: ``` (acs@dellx) ~ $ perceval -g pipermail http://lists.openshift.redhat.com/openshift-archives/dev/ ..... ""origin"": ""http://lists.openshift.redhat.com/openshift-archives/dev/"", ""perceval_version"": ""0.9.4"", ""tag"": ""http://lists.openshift.redhat.com/openshift-archives/dev/"", ""timestamp"": 1510779260.043333, ""updated_on"": 1359665232.0, ""uuid"": ""cc8e796d1d6d3adb7a791404b2399463e7b4e34b"" } Traceback (most recent call last): File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backend.py"", line 310, in run for item in items: File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backend.py"", line 360, in decorator for data in func(self, *args, **kwargs): File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backends/core/pipermail.py"", line 92, in fetch for message in messages: File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backends/core/mbox.py"", line 138, in _fetch_and_parse_messages raise e File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backends/core/mbox.py"", line 108, in _fetch_and_parse_messages tmp_path = self._copy_mbox(mbox) File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backends/core/mbox.py"", line 153, in _copy_mbox for l in f_in: File ""/usr/lib/python3.5/gzip.py"", line 372, in readline return self._buffer.readline(size) File ""/usr/lib/python3.5/_compression.py"", line 68, in readinto data = self.read(len(byte_view)) File ""/usr/lib/python3.5/gzip.py"", line 480, in read raise EOFError(""Compressed file ended before the "" EOFError: Compressed file ended before the end-of-stream marker was reached During handling of the above exception, another exception occurred: Traceback (most recent call last): File ""/usr/local/bin/perceval"", line 4, in <module> __import__('pkg_resources').run_script('perceval==0.9.4', 'perceval') File ""/usr/lib/python3/dist-packages/pkg_resources/__init__.py"", line 719, in run_script self.require(requires)[0].run_script(script_name, ns) File ""/usr/lib/python3/dist-packages/pkg_resources/__init__.py"", line 1504, in run_script exec(code, namespace, namespace) File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/EGG-INFO/scripts/perceval"", line 193, in <module> main() File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/EGG-INFO/scripts/perceval"", line 111, in main cmd.run() File ""/usr/local/lib/python3.5/dist-packages/perceval-0.9.4-py3.5.egg/perceval/backend.py"", line 319, in run raise RuntimeError(str(e)) RuntimeError: Compressed file ended before the end-of-stream marker was reached ``` Not sure if there is a corrupted file in the archive, or there is a problem downloading it. Checking the downloaded files: ``` (acs@dellx) ~/.perceval/mailinglists/http:/lists.openshift.redhat.com/openshift-archives/dev $ gunzip * gzip: 2013-April.txt.gz: invalid compressed data--crc error gzip: 2013-April.txt.gz: invalid compressed data--length error ``` " "__label__bug Uninformative error message for instanceof operator with structural type (use side) IDEBUG-163 According to Jens, this is due to ~ being parsed as XOR. ``` class A { public number a; public void f() {} } var ~A a = { a: 2, f: function () {} }; // XPECT errors --> ""Cannot use structural type with instanceof."" at ""A2"" // Getting: constructor{A} is not a subtype of number. // number is not a subtype of union{Function,type{Object},type{N4Enum}}. a instanceof ~A; // XPECT errors --> ""Cannot use structural field type with instanceof."" at ""A2"" // Getting: number is not a subtype of union{Function,type{Object},type{N4Enum}}. a instanceof ~~A; ``` " "__label__enhancement update everything to use sticker find instead of enumerating stickers manually mpd added a sticker find function that allows all stickers to be returned. This will greatly simplify how both the manager and the 'sync' function work, and allow stickers to be synced without direct sqlite editing." "__label__bug Incompatibilité avec Firefox Quantum (version 57) Deux problèmes : 1) Le mode multi-processeur n’est pas compatible avec swSSO. Cela s’explique par le fait que Mozilla n’a pas implémenté les API d’accessibilité dans ce mode Néanmoins, comme indiqué ici (https://support.mozilla.org/fr/kb/accessibilite-pas-disponible-multi-processus), Firefox détecte que swSSO utilise les API d’accessibilité et bascule automatiquement en mode mono-processeur (arrêt/relance nécessaire). Il est également possible de forcer l'activation de l'accessibilité avec le paramètre indiqué dans ce même article (browser.tabs.remote.force-enable=true) --> vu avec Mozilla : les API d'accessibilité sont désormais fonctionnelles en mode multiprocesseur (à partir de la version 57 ou 58 ?), il n'est plus nécessaire de forcer l'activation avec ce paramètre. 2) Dès que plusieurs onglets sont ouverts, le fonctionnement du SSO est aléatoire. En conservant uniquement un onglet ouvert, le fonctionnement est toujours OK. --> vu avec Mozilla : c'est un bug de leur côté, contournement à mettre en place dans swSSO en attendant la correction." __label__enhancement Add embedded map to contact section "__label__bug responsiveness with peak filtering There's some weird performance issue happening when peak filtering is enabled. If I load ~200 samples, set the peak minimumSignalBaselineDifference to 1e4, and click on a compound with no peaks above that level, Maven basically freezes up to the point of unusability. If I click on a compound that has peaks, it works fine, and same if I set the filter to 0. Now that I'm looking for it, I see a slowdown effect also with fewer samples and the same conditions. I have a sneaking suspicion it's related to #285 .. maybe something screwy about constantly updating the y-axis? Complete guess, might be way off. Edit: it seems to be particularly bad for compounds/slices with a lot of scans, but no peaks above the threshold. Selecting a compound with few non-zero scans doesn't cause any problems." "__label__enhancement As a X-Road Administrator I want that opmon would use local swaref.xsd file **Affected components**: opmon **Affected documentation**: - **Estimated delivery**: - **External reference**: https://jira.ria.ee/browse/XTE-391 **Problem** Operation Monitoring daemon currently uses schemaLocation: ""http://ws-i.org/profiles/basic/1.1/swaref.xsd"". This should me changed to a local file to avoid problems when firewall is preventing access to that file. **Acceptance criteria** - A local swaref.xsd file is used. " __label__enhancement Create wishlist services __label__bug kmpcmanager depends on 'convert' From imagemagick I think. Change this to use pillow. "__label__enhancement Leaderboard Ranking, Additional Feature G'day, I would like for a new feature to be added to leaderboards. While we can currently rank people in KPIs by the results. we need at times to calculate as a percentage on those results and in this case the users YTD. Please let me know if you need more information. Regards JP Group Name: StarGuild-Cars-SalesManager URL: http://version20.mercedes-reward-program.olhub.com/leaderboard/ How I go this feature to work as a Hack in the template. File URL: http://admin.mercedes.olhub.com/repositories/mercedes-reward-program/version20/theme/leaderboard/texteditor?fileName=StarGuild-Cars-SalesManager.html Line: 87 Code Snippet: ## This a Hack until Kademi makes a fix. The 3 loops slows down the page for users until it's cached. # $results is the leaderboard KPI. # foreach($rec in $results) ``` #set($ii = 0) #set($added = false) #if($i == 0) #call($tempOrg.add($rec)) #else #set($target = $kpi.getTargetForLevel($rec.org, ""green"", $yearStart, $periodEnd)) #set($progress = $kpi.getProgress($rec.org, $yearStart, $periodEnd)) #set($target = $formatter.toDecimal($target, 2)) #set($progress = $formatter.toDecimal($progress, 2)) #set($out = ($progress * 100) / $target) #foreach($tOrg in $tempOrg) #set($target = $kpi.getTargetForLevel($tOrg.org, ""green"", $yearStart, $periodEnd)) #set($progress = $kpi.getProgress($tOrg.org, $yearStart, $periodEnd)) #set($target = $formatter.toDecimal($target, 2)) #set($progress = $formatter.toDecimal($progress, 2)) #set($out1 = ($progress * 100) / $target) #if($out > $out1) #set($added = true) #call($tempOrg.add($ii, $rec)) #break #end #set($ii = $ii + 1) #end #if(!$added) #call($tempOrg.add($ii, $rec)) #end #end #set($i = $i + 1) ``` # end # foreach($rec in $tempOrg) ``` #set($currentUser = false) #if($myOrg.orgId == $rec.org.orgId) #set($currentUser = true) #end #if(!$rec.org.members($isInRegion).isEmpty()) #if($r <= $maxDisplay) #genSMRow($rec $currentUser $r $kpi) #if($currentUser) #set($foundUser = true) #end #elseif($r > $maxDisplay && !$foundUser) #if($currentUser) #if($userRecord) #genSMRow($rec $currentUser $r $kpi) #set($foundUser = true) #break #end #end #end #set($r = $r + 1) #end ``` # end " __label__enhancement 検索エンジン用のメタデータ(JSON-LD)を埋め込む SSIA "__label__bug loop through game_titles, if image, use image, else use text <img width=""774"" alt=""screen shot 2017-09-20 at 9 17 36 am"" src=""https://user-images.githubusercontent.com/15836402/30648907-c5c2c258-9de4-11e7-8bda-edb7c608bde6.png""> Error page: http://test.battlepro.com/tournaments/counter-stroke-global-offensive " __label__enhancement Feature: Add tests for user-repo and user-gist components __label__enhancement Finish v2 Blog Integration Update framework for blog v2 "__label__question xCluster: Issue Adding another node to an existing cluster I was following the example for xCluster for creating a cluster, adding a node, and then adding another node. When trying to add my second node to an existing cluster i get the following error. ```plaintext Error: /Stage[main]/Main/Dsc_xcluster[SQLCluster2]: Could not evaluate: Check the spelling of the cluster name. Otherwise, there might be a problem with your network. Make sure the cluster nodes are turned on and connected to the network or contact your network administrator. ``` Here is the code for trying to join my node to the existing cluster ```puppet dsc_xwaitforcluster { 'waitForCluster': dsc_name => 'SQLCluster2', dsc_retryintervalsec => 10, dsc_retrycount => 6, } dsc_xcluster { 'SQLCluster2': ensure => 'present', dsc_name => 'SQLCluster2', dsc_staticipaddress => '10.43.202.50/24', dsc_domainadministratorcredential => { 'user' => 'XXXX\XXXXX', 'password' => 'XXXXXXX', }, } ``` NOTE: the version of xfailovercluster module being used is 1.6.0.0 NOTE: This is using puppetlabs-dsc which wraps the dsc code and calls dsc under the covers. This should not be relevant" __label__bug linkset paths wrong for ensembl mus musculus In ensemble mus musculus linkset files there is an inconsistency between what the linkset path is and what the actual path should be. `http://bridgedb.org/data/linksets/MusMusculus/release87` should be `http://bridgedb.org/data/linksets/release87/MusMusculus` 'release87' should be before 'MusMusculus'. __label__enhancement Add fingerprint option Add fingerprint via sync_gateway rest api to enable usage of this feature in the future. __label__bug Issue: Single mouse-click in `Notes Panel` moves entire app Window ## Description Single mouse click and drag within note panel moves window instead of selecting text. Multi-click and drag seems to work ok. This may be a Mac-only bug? ## Environment OS Type: Darwin OS Platform: darwin OS Release: 16.7.0 Architecture: x64 Tusk: 0.9.1 "__label__enhancement Reduce minified code size by localising imports e.g. instead of: ```js const foo = require(""foo""); module.exports.myfunc = function() { foo.bar() }; ``` We can write: ```js const foo = require(""foo""); let bar = foo.bar; module.exports.myfunc = function() { bar() }; ``` We can make use of destructuring assignment: ```js const {bar} = require(""foo""); module.exports.myfunc = function() { bar() }; ``` This should end up decreasing code size; as well as being a minor runtime performance increase :) Just have to watch out for a couple of circular dependencies." __label__enhancement [TW-1007] time of day support _David Patrick on 2009-07-07T00:51:11Z says:_ with new time:attribute "__label__enhancement copy/paste and export/import anim for all properties right now it works only on transform, masks and effects" __label__bug user cannot delete image of the event he either hosts or participates __label__enhancement Increase code coverage In the rush to the 1.0.0 release test coverage was skipped. Bring the test coverage back to at least 90%. "__label__bug [TW-1653] info report regression; shouldn't be context sensitive _David Patrick on 2015-08-12T22:28:22Z says:_ Using a fresh 2.4.5, 'task 123 info' is context sensitive, where it shouldn't be. According to tbabej, on IRC, this is a regression from 2.4.4 and tasks called by ID/UUID should always be context insensitive." "__label__bug Cannot run lua script ### Summary Sorry about here's an error occured again in a short time. According to [Issue#7](https://github.com/Frizz925/gbf-autopilot-core/issues/7) has been solved. I update and rebuild the core extension, then it becomes unable to use script state. Looks like it's not autopilot's problem, fengari lib's. In my case, it failed in schedule mode but run successfully in event mode without script. The schedule mode could be used before I update it. Thank you for your helping. ### Branch master ### Commit hash https://github.com/Frizz925/gbf-autopilot/commit/ac8c79c6b854bf807f5145ebfd44627df91454e0 & https://github.com/Frizz925/gbf-autopilot-core/commit/1620e2e3789420a5d7aa7e667c36712eaedc81c5 ## More Info ### Game information Account type: Mobage Ingame language: Japanese ### System information OS: Windows 10 Pro 32-bit Screen resolution: 1745x843 @ 1.0x Chrome version: 63.0.3239.132 (Official Build) (32-bit) Node.js version: v9.4.0 Python version: 3.6.4 ### Configuration ``` [Server] ListenerPort=49544 ProcessTimeoutInMs=60000 WorkerTimeoutInMs=500 WaitAjaxTimeoutInMs=5000 JsonRpcEndpoint=/jsonrpc [Controller] ListenerPort=49545 MouseTween=easeInOutCubic [Debug] LogLevel=debug LogToFile=false LogToOutput=true LogToFileDirectory=log LogSocket=false ThrowErrors=false TrialBattleMode=false [General] Language=jp MaxNumActionRetries=2 MinWaitTimeInMsAfterRefresh=2000 TimeLimitInSeconds=3600 UseViramate=true MaxNumPotionsToUse=15 UseFullElixirsWhenNoRemainingHalfAPPotions=false UseFullElixirsFirst=false Treasure= TreasureTarget= [Inputs] DelayInMsBetweenMouseDownAndUp=40 RandomDelayInMsBetweenMouseDownAndUp=20 MouseSpeed=580 MouseSpeedBase=150 MouseScrollSpeed=250 ExitKeyCode=113 WaitTimeInMsBeforeClickInput=50 [PartySelection] PreferredPartyGroup=3 PreferredPartyDeck=2 PreferredPartySet=A PreferredNightmareModePartyGroup=6 PreferredNightmareModePartyDeck=1 PreferredNightmareModePartySet=A [Summons] OnlyRerollSummonsEnabled=false PreferredSummons=シヴァ DefaultSummonAttributeTab=火 RerollSummonWhenNoPreferredSummonWasFound=true [Combat] MinWaitTimeInMsAfterAttack=500 MinWaitTimeInMsAfterSummon=3000 MinWaitTimeInMsAfterAbility=1000 LuaScript= [PokerMode] Enabled=false ChipAmount=1000 WinningRoundCap=5 WinningChipsCap=16000 WinningRateBase=0.75 WinningRateModifier=0.08 [EventMode] Enabled=true EventRaidUrl=""http://game.granbluefantasy.jp/#quest/supporter/510031/5"" EventRaidScript= NightmareModeUrl= NightmareModeScript= EventPageUrl=""http://game.granbluefantasy.jp/#quest/extra"" NightmareModePreferredSummons=シヴァ NightmareModeSummonAttributeTab=火 RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true NightmareModeAvailableAtStart=false WaitTimeInMsAfterEventPageIsLoaded=1000 [EventTreasureMode] Enabled=false EventTreasureUrl=""http://game.granbluefantasy.jp/#event/treasureraid064"" EventTreasureSoloUrl=""http://game.granbluefantasy.jp/#quest/supporter/725391/1"" EventTreasureSoloModeScript=scripts/tester/event_extreme_by_test_fire.lua EventTreasureRaidUrl=""http://game.granbluefantasy.jp/#quest/supporter/725401/1/0/10258"" EventTreasureRaidModeScript=scripts/tester/event_extreme_by_test_fire.lua EventTreasureRaidItemRequiredCount=3 NightmareModeUrl= NightmareModeScript= NightmareModePreferredSummons= NightmareModeSummonAttributeTab= RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true NightmareModeAvailableAtStart=false [RiseOfTheBeastsMode] Enabled=false RiseOfTheBeastsUrl= RiseOfTheBeastsLuaScript= [CoopSoloMode] Enabled=false LuaScript= [CoopGuestMode] Enabled=false LuaScript= [CustomizedScheduling] Enabled=false SchedulingLuaScript=scripts/tester/my_daily_scheduling.lua [DimensionalHalo] RetreatWhenNoDimensionalHaloTransformation=true ``` ### Log ``` $ npm start > gbf-autopilot@0.0.1 start C:\git_repository\gbf-autopilot > cross-env NODE_ENV=production concurrently ""node index.js"" ""python server.py"" [0] extensions.js not found. Not loading extensions. [1] * Running on http://localhost:49545/ (Press CTRL+C to quit) [0] 2018-02-01T02:43:01.908Z - debug: Started listening on localhost:49544 [0] 2018-02-01T02:43:38.667Z - debug: Client 'cWh0LvF6mvi91h1BAAAA' connected! [0] 2018-02-01T02:43:46.628Z - debug: Socket 'cWh0LvF6mvi91h1BAAAA' started [0] extensions.js not found. Not loading extensions. [1] 127.0.0.1 - - [01/Feb/2018 10:43:46] ""POST / HTTP/1.1"" 200 - [0] 2018-02-01T02:43:46.653Z - info: Autopilot started. [0] 2018-02-01T02:43:46.655Z - info: Using 'Scheduling' mode. [0] 2018-02-01T02:43:46.825Z - info: AP potion used: 0 [0] 2018-02-01T02:43:46.826Z - error: TypeError: _fengari.lua.to_luastring is not a function [0] at Script (C:\git_repository\gbf-autopilot\node_modules\gbf-autopilot-core\build\server\steps\Battle\Script\index.js:17:54) [0] at Worker.Script (C:\git_repository\gbf-autopilot\node_modules\gbf-autopilot-core\build\server\steps\Step2.js:10:21) [0] at C:\git_repository\gbf-autopilot\node_modules\gbf-autopilot-core\build\server\steps\Step.js:20:29 [0] at new Promise (<anonymous>) [0] at Worker.Battle.Script (C:\git_repository\gbf-autopilot\node_modules\gbf-autopilot-core\build\server\steps\Step.js:19:12) [0] at C:\git_repository\gbf-autopilot\server\dist\server\Worker.js:42:27 [0] at Promise._execute (C:\git_repository\gbf-autopilot\node_modules\bluebird\js\release\debuggability.js:303:9) [0] at Promise._resolveFromExecutor (C:\git_repository\gbf-autopilot\node_modules\bluebird\js\release\promise.js:483:18) [0] at new Promise (C:\git_repository\gbf-autopilot\node_modules\bluebird\js\release\promise.js:79:10) [0] at Worker.run (C:\git_repository\gbf-autopilot\server\dist\server\Worker.js:27:14) [0] at C:\git_repository\gbf-autopilot\server\dist\server\WorkerManager.js:121:30 [0] at Promise._execute (C:\git_repository\gbf-autopilot\node_modules\bluebird\js\release\debuggability.js:303:9) [0] at Promise._resolveFromExecutor (C:\git_repository\gbf-autopilot\node_modules\bluebird\js\release\promise.js:483:18) [0] at new Promise (C:\git_repository\gbf-autopilot\node_modules\bluebird\js\release\promise.js:79:10) [0] at WorkerManager.run (C:\git_repository\gbf-autopilot\server\dist\server\WorkerManager.js:113:14) [0] at C:\git_repository\gbf-autopilot\server\dist\server\WorkerManager.js:105:16 [0] 2018-02-01T02:43:46.826Z - debug: Stopping socket 'cWh0LvF6mvi91h1BAAAA' [1] 127.0.0.1 - - [01/Feb/2018 10:43:46] ""POST / HTTP/1.1"" 200 - [0] 2018-02-01T02:43:46.834Z - info: Autopilot stopped. ``` " "__label__enhancement Update suggestions for wiki: Install instructions and FAQ It took me a while to figure out how to install the latest stable release. I have created a PR to improve this on the main README.md, but it would be good to have step-by-step installation and pairing instructions added as well. I suggest the install instructions are near the top of of the wiki content sidebar. My install instruction and FAQ suggestions are below. **==== START: Installation Instructions ====** **Installation and Pairing Instructions** The following steps will guide you on how to install GSConnect for Gnome. This Gnome extension has not yet been published as an extension and requires manual installation. 1) Download the [latest stable release](https://github.com/andyholmes/gnome-shell-extension-gsconnect/releases). 2) Follow the [standard install instructions](https://github.com/andyholmes/gnome-shell-extension-gsconnect/wiki/Installation#installing-from-zip). Once installed: * Gnome may ask you to restart Nautilus. * In the Gnome system menu you will see a new ""Mobile Devices"" menu. 3) Install the KDE Connect app from [Google Play](https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp) or [F-Droid](https://f-droid.org/packages/org.kde.kdeconnect_tp/). 4) Open the KDE Connect app and you should see your ""GSConnect"" under ""Available Devices"". Tap on this and the tap ""Request Pairing"". 5) A notification will appear in Gnome and request that you accept the pairing, click ""Accept"". Your mobile device and your Gnome desktop are now paired and will remain paired when they are on the same network. You can now [configure](https://github.com/andyholmes/gnome-shell-extension-gsconnect/wiki/Preferences) your device. If you have any issues see the [Frequently Asked Questions](https://github.com/andyholmes/gnome-shell-extension-gsconnect/wiki/Frequently-Asked-Questions). **==== END ====** **==== START: Suggested Update to FAQ ====** Why don't I see the ""Mobile Devices"" menu in the Gnome System menu? Make sure the Gnome extension has not been disabled using the ""Gnome Tweak Tool"" or at https://extensions.gnome.org/local/. **==== END ====** " __label__enhancement Image updates and enhancements - [x] the image with processing via the fallback needs to be corrected with the flow going to the fallback service - [x] open circuit breaker should have an opening (a slanted line) for better illustration - [x] config/run/play icons and circuit breaker images not consistent with design of openliberty.io --> Design has indicated that they like the current config/run/play so no action here. __label__bug Incorrect links to Pages Links to Pages not working "__label__enhancement Tensor Vectors: Vector visualization code See #2343 Make the actual vector visualization using lines, " "__label__enhancement Extend Polygon2d to support holes Keep existing API the same but add something like ```elm Polygon2d.with : { boundary : List Point2d, holes : List (List Point2d) } -> Polygon2d ``` This will require changing the internal implementation to store the boundary and holes separately." __label__bug Service update is not instant Service updating does not affect the service instantly "__label__enhancement Auto-Sync appointments from Google to EasyAppointments Hi! Great software, love it. One small request, and maybe I just didnt get it: Can we set a cron job to trigger syncing Google Calendar entries that were added by hand to Google Cal into the system so EasyAppointments knows which slots to block for further online bookings? Thanks, Thomas" "__label__question Root container for the fedora test suite Before the tests are run, the test suite creates a base container named testsuitecontainer concatenated with a timestamp. All following test requests are made to this folder. Currently, this LDPC is created with a simple POST. Currently using Fedora API 5.0.0 to run the test suite. POST / Host: http://localhost:8080/fcrepo5/rest/ Slug: testsuitecontainer123456 However, when running the tests suite against other LDP servers like Cavendish and Trilpy the response from the request is a 400 Bad Request. Is the request missing some headers that the Fedora API is adding as default? I tried a sample request from the LDP Primer https://www.w3.org/2012/ldp/hg/ldp-primer/ldp-primer.html#meta-structure EXAMPLE 6: Request - creating a new container POST / Host: http://localhost:8080/fcrepo5/rest/ Slug: testsuitecontainer123456 Content-Type: text/turtle Link: <http://www.w3.org/ns/ldp/BasicContainer>; rel=""type"" The response is a 400 Bad Request." __label__enhancement Update readme.md Readme should be updated to show usage of new epic-cli "__label__enhancement i can make video tutorials in both english and persian, but need help! so, i have been following the project for a few month's now and always wanted to contribute, but have no clue what this is and what it does. im just watching the code, i know part's of it and how it works, but since i have no background on security and what all these security terms mean, i can't figure it out. if there was a helping content that i could use, like how to setup a lab and test the best of it, i could make detailed video tutorials for it. i actually really look forward for code contributions too, but have no spare time for that yet. _________________ **OS**: `Ubuntu` **OS Version**: `17.10` **Python Version**: `2.7 - 3.6` " "__label__bug Animation preview clicking to set animation frames is broken. From (the Elisa tutorial)[https://github.com/frogatto/frogatto/wiki/Developing-Games-Using-Frogatto%27s-Engine%3A-Part-3]: ""What's really nice about this interface is that I can just click [on the first frame of the walk animation, third from the top] and because it has the red rectangles in the image it automatically recognizes the walking animation."" The magic behind the rectangle recognition is broken. (In the code editor animation preview widget.) The animation never seems to get set correctly. (It detected 152 frames of animation at once on the Elisa spritesheet.) Perhaps it is because we're looking at the post-magic-colours-alpha-transform image, without the red rectangles like in the video, and we need to be looking at the pre- version?" "__label__enhancement Add soft sample rates I am considering adding the ability of ""soft"" sample rates, e.g. ```perl $stats->increment( { soft_rate => 0.5 }, 'site.hits' ); ``` I'm unsure how in demand this feature it. While I wouldn't be hard to implement, I think it may be an unnecessary complication, especially if it's used with the autoflush option disabled. " __label__bug Magui filtering does filter also on json file when outputing ### Actual behavior ### Expected behavior ### Steps to reproduce the behavior "__label__enhancement [TW-949] New code to determine color availability _Paul Beckingham on 2009-07-19T12:17:26Z says:_ The current implementation can override ncurses' ability to use color, which is wrong. Integrate the has_color call." "__label__bug adr_character_pvp: no text for ""go back"" (when you don't want to accept) on the equipment selecting page " "__label__enhancement Paint Tool Optional, GIMP has this functionality. " __label__bug ReferenceError: can't access lexical declaration `offlinePeerCount' before initialization Revision 888d3cf ([zip](https://ci.ipfs.team/blue/organizations/jenkins/IPFS%20Shipyard%2Fipfs-companion/detail/master/6/artifacts) loaded via `about:debugging` in Firefox 58) produces error on load if node is initially offline: ![2018-02-09 11_58_27-browser console](https://user-images.githubusercontent.com/157609/36024621-95fba96a-0d90-11e8-83fb-8baa5a7b5306.png) "__label__bug MYSQL between 条件问题 最新的druid 1.1.6 版本 between 条件解析问题 select * from travelrecord a where a.createtime between date_sub(now(),interval 1 day) and now(); conditions解析为:[travelrecord.createtime BETWEEN (null, Wed Jan 31 18:23:34 CST 2018)]" __label__bug Remove Tests Link from the Menu when Screensize is Small # Issue Description The tests navigation link is suppose to be hidden 😄 The navigation supplied to the application menu needs updated before being passes. Needs fixed [here](https://github.com/cerner/terra-site/blob/master/src/app/configureApp.jsx#L79) "__label__bug memory consumption during query processing Both sequential and concurrent queries increase the memory consumption of the application. Ideally after query is complete, the application must relinquish the excess memory. But, that does not happen. Each sequential query increases the memory requirement till the entire available memory is allocated to *ts* application." "__label__enhancement [TW-70] urgency.user.keyword.<keyword>.coefficient=... _David Patrick says:_ along with urgency.user.tag.< tag >.coefficient=... urgency.user.project.< project >.coefficient=... urgency.uda.< name >.coefficient=... there should be a urgency.user.keyword.< keyword >.coefficient=... for completeness and symmetry. There's a keyword color rule, so there mechanics are there, and this feature would allow automatic urgency tweaks for things like descriptions containing *pay*, *fix* and *return*, without having to assign priority or a tag." "__label__question Can't get the selected items from long click Hi, i use the example from **MultiSelectSampleActivity**, works fine, but when i use the selectedExtension to get the selected items, all the items are **selected = false** i use the selectedExtension like this : https://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SampleActivity.java ## Details - [3.2.2 ] Used library version - [ 27.0.2] Used support library version - [3.0.1 ] Used gradle build tools version - [ 3.0.1] Used tooling / Android Studio version" "__label__bug Files over 30,000 words cause a crash " __label__bug Can't print numbers Numbers can't be printed due to the interpreter always removing quotations. __label__bug v3.0.1 Typo in admin view In: `Redirect This site does not allow embeding ` there should be another d in embedding "__label__bug Contact enlist screen cannot handle long Denjuu names (Imported from the Wiki) ""The 'Got X's phone number!' text in the message box seems to truncate Denjuu names.""" __label__bug Missing jQuery capabilities on hamburger menu Because of TypeScript integration we need to us the UI Typings library to get the responsive menu to work "__label__enhancement Use icons instead of text buttons Replace the button NEW, SHARE, SAVE with icons." "__label__bug FullScreen mode is not removed when videoplayer is removed. ### Description FullScreen mode is not removed when videoplayer is removed and double click is used with video tag ### Steps to reproduce 1. Run the attached sample; ### Result The videoplayer is removed, but the fullscreen mode stays on the page. The page is not scrollable. ### Expected result The page should be scrollable. ### Attachments [Sample.zip](https://github.com/IgniteUI/ignite-ui/files/1680902/Sample.zip) " __label__bug blender: rebuild needed ``` lmy441900@junde-dell-vostro [ ~ ] $ blender blender: error while loading shared libraries: libopencv_videoio.so.3.1: cannot open shared object file: No such file or directory ``` __label__enhancement Adds a production script Adds a production script with: - directory linking for mariadb volume - customization of admin credentials - customization of bootstrapper flags __label__bug [nightLight.sh] Only the last app in the array can turn off night-light Find a way to assign 1 to `$check` if any one of the apps is running. __label__bug api-购买与支付: 订单表中有的订单记录没有Sitecode数据 ## Problem: - 根据目前的需求,每个新的订单应该都有Sitecode数据 - 正式数据库:2018-02-01以后有23条没有sitecode数据的新订单 - `Bug` ``` SELECT * FROM `cine_web`.`t_order` WHERE `sitecode` IS NULL and `pay_price` >0 and `create_at`>'2018-02-01' ORDER BY `create_at` ``` "__label__enhancement Request: Implement/Expose TTF Font Size `83 46 10 FC C7 86 A4 00 00 00 ?? 00 00 00` The wildcard byte in that signature controls the font size for non-bitmap font rendering (11 or 0xA by default). A mod should be added exposing that value and letting users change it (in decimal). This would allow users to use fonts that expect to be printed at specific other sizes, for example pixel-style fonts that otherwise look bad in Mabi." __label__enhancement 기본 소켓 io 예제 실습(webchatting) + jquery mobile "__label__enhancement Web App: Add mouse over information to buttons Please add the following mouse over information to the 5 buttons: Top left: Settings Menu; Top right: Save Screenshot, Load Data, Save Data, Data Table" __label__question bearingがフォントサイズに比例しない問題 MS P 明朝のフォントグリフのbearingがビットマップのピクセル単位の整数に丸められているように見える。(生の値を64.0で割ったものが整数) フォントサイズを変えるアニメーションを行う際の障害になっている。 フォントの仕様かFreeTypeの使い方の過ちだと思われるので調べる。 "__label__enhancement Make Source init more transparent The are currently two conflicting ways to init a source: one that just makes a stamp of a given shape, and one that uses the data to define the source. The latter one is more powerful, and we know have a call_back mechanism to allows users to specify the init style. This issue should get rid of the first/default source init, and remove the `shape` keyword as it'll be obsolete then. The proposal is to call `init_func` *before* doing anything else, that is before the sizes are set and containers and constraint matrices are created. The callback can know the image data or whatever else might be needed, so it breaks the dependency between Source and Blend that gave rise to the delayed initialization of Source through Blend. It thus makes the entire thing both flexible and transparent to the user." "__label__bug Pixel 2 (and XL) reports ""no MIFARE Classic support"" when it supports MIFARE Classic. ## Description of the issue Pixel 2 (walleye) and Pixel 2 XL (taimen) report ""no MIFARE Classic Support"" in Metrodroid, when they actually support it. iFixit reports ""NXP 81A04 39 04 sSD730 (likely NFC controller)"" for Pixel 2 XL. Pixel 2 is also able to communicate with MFC cards just fine. This is probably due to the extra detection routines added for the LG F60 picking up something it doesn't like." __label__enhancement Add ability to ignore error codes e.g. 404 errors Implemented in the Craft 2 plugin here: https://github.com/adamdburton/craft-sentry/blob/master/SentryPlugin.php#L165 "__label__bug Frequencies in SNVs might be inconsistent In some cases, SNVs with zero Fvar and Rvar have positive frequency and make it even to `*final.csv` file. Others with positive counts have frequencies that do not match (Fvar + Rvar) / (Ftot + Rtot). " "__label__bug ""Could not find peer"" error when application starts ### Description [comment]: # (Feature or Bug? i.e Type: Bug) *Type*: Bug [comment]: # (Describe the feature you would like, or briefly summarise the bug and what you did, what you expected to happen, and what actually happens. Sections below) *Summary*: When application starts it tries to connect to whisper node to get offline messages from. Sometimes that node isn't available so you end up seeing redbox error. #### Expected behavior [comment]: # (Describe what you expected to happen.) No error is shown. #### Actual behavior Error is shown to the user ### Reproduction [comment]: # (Describe how we can replicate the bug step by step.) You don't get it every time obviously. Only when node is actually available (maybe down, maybe network issues, etc). - Open Status - Sign in ### Solution [comment]: # (Please summarise the solution and provide a task list on what needs to be fixed.) *Summary*: - [ ] Hide error from user as it's not informative to him - [ ] Try re-connecting to peer/wnode. See @oskarth comments on proposed workflow below. - [ ] Apply this solution to other parts dealing with wnode (basically to full initialize offline inboxing process) ### Additional Information <img width=""645"" alt=""screenshot 2018-01-16 09 03 19"" src=""https://user-images.githubusercontent.com/23836/34985616-b60b5f4e-fac5-11e7-8c25-58a6f9a1c604.png""> " "__label__enhancement Add Array.unique() and Array.unique!() methods `Array.unique() as Array` and `Array.unique!() as Array` Returns an array by removing duplicate values in the array. Can be destructive (!). ```ruby var a = [""a"", ""a"", ""b"", ""b"", ""c""] a.unique() # [""a"", ""b"", ""c""] ```" "__label__bug Several problems about job 1,添加作业默认不使用优先Executor 2,运行状态展示错误,展示了failover 3,启用状态 ,更新,立即终止和删除按钮应该置为灰 4, 添加/修改/导入作业的时候没有对是否为本地模式进行校验,校验规则:启用本地模式,作业分片数应该显示N/A,分片序列号/参数应该弹出提示*=a的模式,不修改不能通过验证 5,显示控制台日志,没有显示出来 6,批量优先选择了Executor,但是点击到作业设置详情页,没有展示出来 7,立即执行按钮没有触发 8,立即终止按钮没有触发 9,导入作业没有对已经存在的作业做校验 10,添加的新域,没有任何作业,但异常作业数显示1 11,作业统计->失败调用 页面没做? 12,勾选所有要删除的作业,然后点击批量优先Executor ,弹出的提示框应该过滤掉状态不是stopped的作业,同理批量启用和禁用作业 13,批量禁用作业时,如果后台删除出错,前台不会自动更新最新的状态 ,比如禁用三个作业A,B,C,作业C后台禁用失败,A,B禁用成功,前台展示A,B还是启用状态,需人工刷新 ,同理,批量启用作业 14,对于刚刚创建的作业,执行删除,应该弹出提示框提示“创建后2分钟内不应该删除作业”" __label__enhancement Gaussian version of microsphere model Tracker. It should be possible to include the Gaussian chain in the microsphere model. "__label__bug Lab/Pac-Man: Inconsistent external links In the lab page (classroom/search-lesson/lab: pac-man) there are two links to Berkley's CS188, but these are to different version of the course. This is confusing. Also the content of the project zip-file is different - the autograder.py is lacking from the old one (as well as from the zip Udacity distributes). The autograder is very useful and should be included if possible." "__label__enhancement FCL-Web-App: Does not support äöuß (Umlaute, Esszett) Please support ""Umlaute"" and sharp s (äöuß). You can test it with the norovirus scenario data as JSON (see attachment). [Norovirus_scenario_data.zip](https://github.com/SiLeBAT/BfROpenLab/files/1437714/Norovirus_scenario_data.zip) " "__label__question How to read gradle command line parameters in karate-config.js Hi, I have a scenario where get the username by calling aws cli command and pass that it to ./gradlew test -Dusername=<value-of-awscommand> When try to read in karate-config.js as var ssmParameter=karate.properties['username']; it shows as null Tried the follwing properties types in gradle build but no luck: systemProperty ""karate.properties[username]"", System.properties.getProperty(""username"") systemProperty ""karate.properties"", System.properties.getProperty(""username"") Seems like i'm missing something here. But was able to get the value for the following: build.gradle: systemProperty ""karate.env"", System.properties.getProperty(""karate.env"") var env=karate.env; I was able to get the value of 'username' by setting the property of 'username 'in the TestRunner class Is there any way i can get he value without the TestRunner? Appreciate your help Thanks, Jeevan " "__label__bug Change the music When a new file is dropped, it should replace the one that's currently playing." __label__enhancement Conectar cliente con servicio usuarios __label__enhancement Reset wallpaper on all spaces on unload. No idea how though. "__label__enhancement Comments relating to the Django SECRET_KEY variable could be better The comments around the Django `SECRET_KEY` variable ([here](https://github.com/apel/rest/blob/dev/apel_rest/settings.py#L162)) and it's need to be overwritten could be clearer. `SECRET_KEY` is set in the repository to allow the Travis CI tests to run. If deployed as a docker container, this value is automatically overwritten (although this is done by another dummy value by default). The comments around the variable should say that the value needs to be changed, either by: - changing the `DJANGO_SECRET_KEY` variable in `yaml/apel_rest_interface.env` (if deploying as a container) - changing the `SECRET_KEY` variable in `apel_rest/settings.py` file (if deploying outside of a container) As an added bonus, it may be possible to remove the default dummy value used in `yaml/apel_rest_interface.env` so deploying as a containers fails unless the deploy-er explicitly sets the `DJANGO_SECRET_KEY` variable. " "__label__question Should I be able to import any Node package with this? I'm trying to use this JS package: https://github.com/mohsen1/json-formatter-js I tried several methods and all have failed so far: `dart:js`, `package:js`, `package:node_interop` and then this one. Any idea how to use a generic JS library with Dart?" __label__enhancement Use property names for task repos in pom.xml Each task repo version is hardcoded in pom.xml. Instead add a property in `properties` node. i.e. ` <f8k.fleet.source-google-analytics.version>0.0.44</f8k.fleet.source-google-analytics.version>` "__label__bug Weird problem on printed tibble when changing sig.figs Hi, increasing `options(pillar.sigfig)` seems to break numeric representation when printing the object. Reprex: ``` r library(tibble) # OK (though in my opinion trailing zeroes should not be added) options(pillar.sigfig = 3) tibble(val = c(0.01)) #> # A tibble: 1 x 1 #> val #> <dbl> #> 1 0.0100 # Still OK options(pillar.sigfig = 5) tibble(val = c(0.01)) #> # A tibble: 1 x 1 #> val #> <dbl> #> 1 0.010000 # Not ok... options(pillar.sigfig = 6) tibble(val = c(0.01)) #> # A tibble: 1 x 1 #> val #> <dbl> #> 1 0.001e+05 ``` This appears to be related to some bug in `pillar_shaft`: ``` r library(pillar) # not ok... pillar_shaft(0.010, sigfig = 6) #> 0.001e+05 #not ok... pillar_shaft(100.010, sigfig = 11) #> 100.001e+05 ``` (Working on R 3.4.1, tibble 1.4.2)" "__label__enhancement The react component should optionally pass in the container size Since the react component observes size changes on the root element already, it might as well inject the width / height as props. Probably passing in a `size` prop optionally is most straight-forward. (The way [react-sizeme does it](https://github.com/ctrlplusb/react-sizeme) does it.) Although, making the package use the render-prop pattern is tempting too 🤔. ```jsx render() { <ContainerQuery stats={stats} render={size => ... } /> } ``` ☝ This would allow the user to alias the prop however they like, and makes it crystal clear what's happening." "__label__bug Deleting field setting default choice brakes application ### Expected behavior From the field group editor, deleting the choice of a Radio/Checkbox/Selection which is also the default choice, should update the `default_choice` to match one of the remaining choices. ### Actual behavior The current behaviour is that the choice gets deleted leaving `my_radio_setting.default_choice` = `nil`. This brakes the edit page where the field can be edited. Binda version: https://github.com/lacolonia/binda/commit/b1716232987ba19d46bc8191ed33b4c57538bbb6 Rails version: 5.1.4 " __label__bug automatically generated docs does not work http://nansat.readthedocs.io/en/latest/source/nansat.html __label__bug Experiments are not accessable Experiments are not accessable. All experiments are pointng to 202.141.81.60 ip address __label__bug Pull requests get wiped when switching to a repository? 1. Switch to repository A. 1. Open the pull requests list. 1. Note that PRs are loading. 1. Wait for them to finish loading. 1. Switch to a different repository. 1. Switch back to repository A. 1. Open the pull requests list. 1. Note that PRs are loading again. We _should_ have them cached already from opening the repository the first time. So we shouldn't need to load them again. __label__enhancement Auto inititialization of TransportScheduler Presently an api call is needed to initialize the application. For auto initialization the code for initialization ( lines 24-33 in api.ex ) has to be moved to the init block of API. But on doing so an api call is still required for initialization. __label__enhancement Allow subclasses of PoolConnection to be used by CuttlePool. A `CuttlePool` instance should be able to accept a subclass of `PoolConnection` for use on all calls to `get_connection()`. `get_connection()` should also accept a subclass of `PoolConnection` to supersede the default connection wrapper. __label__bug Esto no funciona por fa fix ## ¿Cómo puedo replicar el problema? Cuando abro mi navegador Chrome en la versión 60 y hago scroll la página se pone negra. ## ¿En qué versión de Invie ocurre? Ocurre en la versión actual del website 4 de octubre __label__enhancement __call__ instead of eval for Problem and Survey ![image](https://cloud.githubusercontent.com/assets/913249/14056669/89c7262c-f2b4-11e5-8d00-21f14545a874.png) Should be backwards compatible. __label__enhancement Add support for configurable PHP version https://github.com/phpbrew/phpbrew is probably the preferred option here. "__label__bug Crashes on fragment swapping When swapping fragments, getViewById might return a wrong recyclerview when both the old and new fragment have a recyclerview with the same id" "__label__bug Batch scripts are not working with params. ### OrientDB Version: 3.0.0 RC1 ### Java Version: 1.8 ### OS: Centos batch scripts are not working with params. In the code below name is always empty in the database. private static void batchScriptParams(ODatabaseDocument db) { String script = ""BEGIN;"" + ""LET $a = CREATE VERTEX V SET name = :_name;"" + ""LET $b = CREATE VERTEX V SET name = :_name2;"" + ""LET $edge = CREATE EDGE E from $a to $b;"" + ""COMMIT;"" + ""RETURN $edge;""; HashMap<String, Object> map = new HashMap<>(); map.put("":_name"", ""bozo""); map.put("":_name2"", ""bozi""); map.put(""_name"", ""bozo""); map.put(""_name2"", ""bozi""); OResultSet rs = db.execute(""sql"", script, map); while (rs.hasNext()) { OResult row = rs.next(); } rs.close(); } Regards, Safwan" "__label__question How to add a favicon? Just another question, but how would I add a favicon? I've uploaded one to my root directory, but nothing has popped up, any help would be appreciated! " __label__enhancement Add build context of solution The solution build context is undefinded now. And the MsBuildTaskExplorer has the knowledge of which solution is used. ``` SolutionDir = *Undefined* SolutionExt = *Undefined* SolutionFileName = *Undefined* SolutionName = *Undefined* SolutionPath = *Undefined* ``` "__label__bug [TW-355] Query with negative relative date differs greatly from absolute date in past _John West on 2013-06-03T12:14:28Z says:_ By way of explanation, I've changed my dateformat to YMD.HN though I'm unsure if that's a factor. $ task end.after:20130601.0000 all ... 8 tasks $ task end.after:-3days all No matches. I expect that these queries should return similar results. At the least, the second query should return a non-zero number of tasks. I'm on version 2.1.2. Thank you!" __label__bug Benchmark - Algorithm - Uncheck - Blue Stays When you uncheck a miner algorithm in the benchmark screen the blue highlight stays rather than going to grey If you check an algorithm thats grey it highlights blue The blue does disappear once you hit start however "__label__bug ""Save and open as local energy solution"" leads to ""404 not found"" error ![image](https://user-images.githubusercontent.com/19907658/35733950-9f96a720-081f-11e8-98fb-bf41d4189567.png) " __label__bug update-meta-files.sh containing invalid paths ### Type of Report Bug ### Actual behaviour Some files are not downloaded properly. This was basically untestable in the beginning 🤕 ``` ✘ ds ~/Projekte/while-true-do/ansible-role-selinux $ bash ./update-meta-files.sh -t Downloading Test Files ---------------------- Downloading https://raw.githubusercontent.com/while-true-do/ansible-galaxy-skeleton/master/tests/ ./update-meta-files.sh: Zeile 62: /home/ds/Projekte/while-true-do/ansible-role-selinux/tests/https://raw.githubusercontent.com/while-true-do/ansible-galaxy-skeleton/master/tests/: No such file or directory ✘ ds ~/Projekte/while-true-do/ansible-role-selinux $ bash ./update-meta-files.sh -s ./update-meta-files.sh: Zeile 99: update_selfs: Kommando nicht gefunden. ✘ ds ~/Projekte/while-true-do/ansible-role-selinux $ bash ./update-meta-files.sh -m Downloading Meta Files ---------------------- Downloading https://raw.githubusercontent.com/while-true-do/ansible-galaxy-skeleton/master/ ./update-meta-files.sh: Zeile 72: /home/ds/Projekte/while-true-do/ansible-role-selinux/https://raw.githubusercontent.com/while-true-do/ansible-galaxy-skeleton/master/: No such file or directory ``` ### Expected behaviour All downloads should work as expected ;) "__label__bug BUG Drawer Component Toggling Drawer Side from left to right causes rendering of just overlay when it tries to open from the right after it has previously opened from the left ## react-native, react and native-base version - React-Native v0.46.0 - React v16.0.0-alpha.12 - Native-Base v2.3.1 ## Expected behavior - Drawer should open from whichever side it toggles to ## Actual behavior - Drawer content does not render when opening from the right after it has been opened from the left ## Steps to reproduce (code snippet or screenshot) ``` import React, { Component } from ""react""; import { StyleSheet, Dimensions, View, ImageBackground } from ""react-native""; import { Button, Container, Content, Icon, Drawer, Text } from ""native-base""; import Sidebar from ""./sidebar""; class HomeScreen extends Component { constructor(props) { super(props); this.state = { left: false } this.closeDrawer = this.closeDrawer.bind(this); this.openDrawer = this.openDrawer.bind(this); this.onSwitch = this.onSwitch.bind(this); } closeDrawer() { this.drawer._root.close() } openDrawer() { this.drawer._root.open() } onSwitch() { this.setState((prevState) => { return { left: !prevState.left } }); } render() { return ( <Drawer type=""displace"" key={this.state.left} ref={(ref) => this.drawer = ref } content={<Sidebar />} side={this.state.left ? ""left"" : ""right"" } relativeDrag={false} onClose={this.closeDrawer} > <Text onPress={this.openDrawer} style={{ fontSize: 50, color: ""blue"", marginTop: 40 }}>Wait for text here man</Text> <Text style={{ fontSize: 50, color: ""blue"", marginTop: 40 }} onPress={this.onSwitch}>Switch</Text> </Drawer> ); } } ``` ## Screenshot of emulator/device ![simulator screen shot 21 sep 2017 12 50 35 pm](https://user-images.githubusercontent.com/10584060/30694519-3d767b4a-9ecc-11e7-979b-070151980b84.png) ## Is the bug present in both ios and android or in any one of them? I've only tested with iOS " __label__bug Graph.py (Updated to Mongo) @ohtrahddis update graph.py to mongo "__label__bug How to deal with the Polyline width when I zoom out the map . Polyline pathOverlay = Polyline() pathOverlay.color = Color.parseColor(""#99ffff00"") pathOverlay.width = 10f pathOverlay.points = points mMapView.overlays.add(0, pathOverlay) I use this way to add a Polyline in the map, but when I zoom out or zoom in the map ,the width of polyline will zoom also. how can I deal with this problem? [no zoom](https://github.com/niray/LbsMap-master/blob/master/1.jpg?raw=true) [Zooming](https://github.com/niray/LbsMap-master/blob/master/2.jpg?raw=true) " "__label__enhancement Send usernames in reports to CopyPastor Once SOBotics/CopyPastor#10 is implemented, Guttenberg should send the authors of the posts to CopyPastor" __label__enhancement Allow oracle to keep labeling ask oracle if they want to continue labeling "__label__bug stronkatest.pl ### Co trzeba zrobić, aby pojawił się element? Coś trzeb ### Link bezpośredni `http://www.stronkajakas.pl` ### Zrzut ekranu <details>`http://www.stronkajakas.pl`</details> ### Moja konfiguracja **Przeglądarka internetowa:** Vivaldi 1.95.1077.45 **System operacyjny:** Linux **Bloker:** Nano Adblocker 1.0.0.29 **Używane filtry:** Polskie " __label__enhancement [TW-569] user-defined attributes _David Patrick on 2009-07-07T00:54:55Z says:_ where users can create their own attributes and define data types and constraints. These new attribute will be usable just like the built-in ones. see: [[User-defined_attributes]] __label__enhancement (Fun Fact) I like CamelCase I like [CamelCase|SnakeCase] "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/UKby4T_XBo2iAhY2_147naSKYTtbTQ9TU3jGlCA_i6SrAvQe4VdU6rWsfYVRhEvp0/etrR96TKV5XRD9KYL4j_OrNWlWellCX1lFlC_HNIYp2XF7-ATKB8Kh2l7AbdacNs0/-NksJN_qkT-lb69Nzvj7a2Z686DaFBOn2DKJCZZmb-A1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__bug Video memory issues cause game to crash Sometimes the game crashes after the game has been running for about an hour. We suspect this is a video memory issue or an issue with Intel integrated graphics cards. __label__bug [TW-14] Parent recurring tasks cannot be deleted _Miguel de Val Borro on 2011-07-17T17:37:14Z says:_ A parent hidden task cannot be deleted from the task list: <pre> $ task 49 del Task 49 'Pay rent' is neither pending nor waiting. </pre> Sometimes it is necessary to delete the parent task directly when there are no pending child tasks that could be deleted. This problem has been reported already in bug #801 but it is not yet assigned. "__label__bug Mobile configuration fields are out of sync with the proposal For example: `clusterName` => `cluster_name`. Version should be number but it's added as string. etc. Using `clusterName` makes forces mobile SDK to write custom parser, while having `clusterName` will work out of the box. See: https://github.com/aerogear/proposals/blob/master/sdks/Mobile-configuration.md " __label__enhancement Add support for: docker image history "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/UKby4T_XBo2iAhY2_147naSKYTtbTQ9TU3jGlCA_i6SrAvQe4VdU6rWsfYVRhEvp0/PMLuDVC-a2V7sQ1mooRA80q0sJzbBeREX8vqQKxmgxkRzY0q5TBQDeLtnwdFtbGu0/qdPqricfyZqETyuHm3fF0iWD-4CX9pJiUsMe4VEPQwY1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__enhancement switch tests from mstest to xunit __label__enhancement SQL queries on campaigns#index are too big and slow "__label__bug Simulation halted by internal error The file contains 15 sub-ciruits, and the simulation is oftentimes interrupted by message ""Simulation halted by internal error"" along with several arbitrary wires changing color to either red or blue. Sometimes issues is fixed by repeatedly restarting simulation or Ctrl+E. Ran from the command line: java -jar logisim-evolution-2.13.9.jar. OS: ubuntu 14.04 3.13.0-49-generic #83-Ubuntu SMP x86_64 x86_64 x86_64 GNU/Linux ![Uploading Issue.jpg . . .]() Stack trace printed to stdout: ``` at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) ``` java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.ArrayIndexOutOfBoundsException: 22 at java.util.ArrayList.add(ArrayList.java:459) at com.cburch.logisim.data.AbstractAttributeSet.addAttributeListener(AbstractAttributeSet.java:45) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.<init>(SimulationTreeCircuitNode.java:75) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:153) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:307) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:141) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.<init>(SimulationTreeCircuitNode.java:80) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.computeChildren(SimulationTreeCircuitNode.java:153) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:106) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.propagate(SubcircuitFactory.java:385) at com.cburch.logisim.instance.InstanceComponent.propagate(InstanceComponent.java:357) at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:388) at com.cburch.logisim.circuit.Propagator.clearDirtyComponents(Propagator.java:239) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:306) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException java.lang.NullPointerException java.lang.NullPointerException .... java.lang.NullPointerException java.lang.NullPointerException java.lang.NullPointerException java.lang.NullPointerException java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901) at java.util.ArrayList$Itr.next(ArrayList.java:851) at com.cburch.logisim.gui.main.SimulationTreeModel.fireStructureChanged(SimulationTreeModel.java:81) at com.cburch.logisim.gui.main.SimulationTreeCircuitNode.circuitChanged(SimulationTreeCircuitNode.java:107) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:430) at com.cburch.logisim.circuit.Circuit.fireEvent(Circuit.java:435) at com.cburch.logisim.circuit.Circuit$MyComponentListener.componentInvalidated(Circuit.java:113) at com.cburch.logisim.instance.InstanceComponent.fireInvalidated(InstanceComponent.java:264) at com.cburch.logisim.instance.InstanceStateImpl.fireInvalidated(InstanceStateImpl.java:58) at com.cburch.logisim.circuit.SubcircuitFactory.getSubstate(SubcircuitFactory.java:322) at com.cburch.logisim.circuit.SubcircuitFactory.propagate(SubcircuitFactory.java:385) at com.cburch.logisim.instance.InstanceComponent.propagate(InstanceComponent.java:357) at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:388) at com.cburch.logisim.circuit.Propagator.clearDirtyComponents(Propagator.java:239) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:306) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException java.lang.NullPointerException ... java.lang.NullPointerException java.lang.NullPointerException java -jar logisim-evolution-2.13.9.jar Exception in thread ""AWT-EventQueue-0"" java.lang.IllegalStateException: ends changed outside transaction at com.cburch.logisim.circuit.CircuitLocker.checkForWritePermission(CircuitLocker.java:121) at com.cburch.logisim.circuit.Circuit$MyComponentListener.endChanged(Circuit.java:117) at com.cburch.logisim.instance.InstanceComponent.fireEndsChanged(InstanceComponent.java:252) at com.cburch.logisim.instance.InstanceComponent.computeEnds(InstanceComponent.java:193) at com.cburch.logisim.instance.InstanceComponent.setPorts(InstanceComponent.java:380) at com.cburch.logisim.instance.Instance.setPorts(Instance.java:119) at com.cburch.logisim.circuit.SubcircuitFactory.computePorts(SubcircuitFactory.java:140) at com.cburch.logisim.circuit.CircuitAttributes$MyListener.circuitAppearanceChanged(CircuitAttributes.java:66) at com.cburch.logisim.circuit.appear.CircuitAppearance.fireCircuitAppearanceChanged(CircuitAppearance.java:160) at com.cburch.logisim.circuit.appear.CircuitAppearance.setObjectsForce(CircuitAppearance.java:354) at com.cburch.logisim.circuit.appear.CircuitAppearance.recomputeDefaultAppearance(CircuitAppearance.java:274) at com.cburch.logisim.circuit.appear.CircuitAppearance.recomputePorts(CircuitAppearance.java:280) at com.cburch.logisim.circuit.appear.PortManager.updatePorts(PortManager.java:217) at com.cburch.logisim.circuit.appear.CircuitPins$MyComponentListener.attributeValueChanged(CircuitPins.java:61) at com.cburch.logisim.data.AbstractAttributeSet.fireAttributeValueChanged(AbstractAttributeSet.java:85) at com.cburch.logisim.std.wiring.ProbeAttributes.setValue(ProbeAttributes.java:122) at com.cburch.logisim.std.wiring.PinAttributes.setValue(PinAttributes.java:110) at com.cburch.logisim.circuit.CircuitMutatorImpl.set(CircuitMutatorImpl.java:153) at com.cburch.logisim.circuit.CircuitChange.execute(CircuitChange.java:192) at com.cburch.logisim.circuit.CircuitMutation.run(CircuitMutation.java:133) at com.cburch.logisim.circuit.CircuitTransaction.execute(CircuitTransaction.java:48) at com.cburch.logisim.tools.SetAttributeAction.doIt(SetAttributeAction.java:85) at com.cburch.logisim.proj.Project.doAction(Project.java:196) at com.cburch.logisim.gui.main.AttrTableSelectionModel.setValueRequested(AttrTableSelectionModel.java:128) at com.cburch.logisim.gui.generic.AttributeSetTableModel$AttrRow.setValue(AttributeSetTableModel.java:90) at com.cburch.logisim.gui.generic.AttrTable$TableModelAdapter.setValueAt(AttrTable.java:448) at javax.swing.JTable.setValueAt(JTable.java:2741) at javax.swing.JTable.editingStopped(JTable.java:4723) at com.cburch.logisim.gui.generic.AttrTable$CellEditor.fireEditingStopped(AttrTable.java:123) at com.cburch.logisim.gui.generic.AttrTable$CellEditor.stopCellEditing(AttrTable.java:248) at com.cburch.logisim.gui.generic.AttrTable$CellEditor.actionPerformed(AttrTable.java:88) at javax.swing.JComboBox.fireActionEvent(JComboBox.java:1258) at javax.swing.JComboBox.setSelectedItem(JComboBox.java:586) at javax.swing.JComboBox.setSelectedIndex(JComboBox.java:622) at javax.swing.plaf.basic.BasicComboPopup$Handler.mouseReleased(BasicComboPopup.java:834) at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:290) at java.awt.Component.processMouseEvent(Component.java:6525) at javax.swing.JComponent.processMouseEvent(JComponent.java:3322) at javax.swing.plaf.basic.BasicComboPopup$1.processMouseEvent(BasicComboPopup.java:498) at java.awt.Component.processEvent(Component.java:6290) at java.awt.Container.processEvent(Container.java:2234) at java.awt.Component.dispatchEventImpl(Component.java:4881) at java.awt.Container.dispatchEventImpl(Container.java:2292) at java.awt.Component.dispatchEvent(Component.java:4703) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462) at java.awt.Container.dispatchEventImpl(Container.java:2278) at java.awt.Window.dispatchEventImpl(Window.java:2739) at java.awt.Component.dispatchEvent(Component.java:4703) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:702) at java.awt.EventQueue$3.run(EventQueue.java:696) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86) at java.awt.EventQueue$4.run(EventQueue.java:724) at java.awt.EventQueue$4.run(EventQueue.java:722) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75) at java.awt.EventQueue.dispatchEvent(EventQueue.java:721) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:399) at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:399) at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:399) at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:399) at com.cburch.logisim.circuit.CircuitState.processDirtyComponents(CircuitState.java:399) at com.cburch.logisim.circuit.Propagator.clearDirtyComponents(Propagator.java:239) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:306) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.CircuitState.processDirtyPoints(CircuitState.java:428) at com.cburch.logisim.circuit.Propagator.clearDirtyPoints(Propagator.java:243) at com.cburch.logisim.circuit.Propagator.propagate(Propagator.java:305) at com.cburch.logisim.circuit.Simulator$PropagationManager.run(Simulator.java:126) java.lang.NullPointerException java.lang.NullPointerException " "__label__bug Ai Light upgrade headaches Originally reported by: **treowayne (Bitbucket: [treowayne](https://bitbucket.org/treowayne), GitHub: Unknown)** ---------------------------------------- I have an AI Light running Espurna 1.7.1. I've been trying to update the firmware, but the device won't accept it. I have tried: * Downloading the pre-compiled binary and using Espurna web interface * Compiling from source and uploading using Arduino IDE OTA * Compiling from source and uploading using Espurna web interface When I upload in the Arduino IDE I get a long pause during authentication, then an error message (""No response from device.""). I've tried compiling with ESP8285 and ESP8266 (DIO & DOUT), but nothing seems to work. I don't care if I lose all the settings, I just want the scheduler features in the new release. I had a really tough time connecting to the tiny solder pads the first time, and I'd really like to avoid doing it again. Is there maybe an intermediate firmware I should try?" __label__bug [TW-463] manpages should be installed from ${CMAKE_CURRENT_BINARY_DIR} _Jakub Wilk on 2013-02-26T14:19:16Z says:_ Please see the attached patch. It fixes manpage installation for out-of-tree builds. "__label__enhancement ""School of engineering"" should be actual text (not a GIF) This is the better way to make it scale on a phone. " __label__bug Drop-down menu does not work on iPhone 6s Tested on iPhone 7 and same issue http://uparkumc.org/ "__label__bug [TW-727] Duplicate Tasks _Stefan Betz on 2011-12-19T11:32:32Z says:_ I am using TaskWarrior for some time, and now i noticed many duplicate tasks with the same UUID: <pre> grep -n XXX ~/.task/completed.data 318:[description:""Klären ob XXX für mich RZ machen kann."" end:""1322564661"" entry:""1322564661"" priority:""L"" project:""XYZ"" status:""completed"" tags:""abc"" uuid:""731b2a2b-737e-8c3d-8e08-4f867004f787""] 326:[description:""Klären ob XXX für mich RZ machen kann."" end:""1322564661"" entry:""1322564661"" priority:""L"" project:""XYZ"" status:""completed"" tags:""abc"" uuid:""731b2a2b-737e-8c3d-8e08-4f867004f787""] 335:[description:""Klären ob XXX für mich RZ machen kann."" end:""1322564661"" entry:""1322564661"" priority:""L"" project:""XYZ"" status:""completed"" tags:""abc"" uuid:""731b2a2b-737e-8c3d-8e08-4f867004f787""] </pre> In my ~/.task/undo.data i found different ""new events"" with the same UUID, i think this happens while using ""task merge"". Is there any tool that fixes my Taskwarrior files, i hate duplicates ;-)" "__label__enhancement [TW-1648] Typo in Documentation _Simon W. Jackson on 2015-08-04T09:27:30Z says:_ recurrence=yes Controls whether recurrence is **enabled**, and whether" "__label__question calcul des reliquats [Uniquement pour les bugs] ### Système et application Système d'exploitation du serveur : Debian 8.9 Serveur HTTP et version : Apache/2.4.10 (Debian) Version MySQL et PHP : mysql: 5.5.57-0+deb8u1 php: PHP 5.6.30-0+deb8u1 (cli) Navigateur et version : firefox, IE, chrome Version de l'application : installed_version = 1.9 Avez-vous des notifications dans la console du navigateur : Avez-vous des erreurs dans le log du serveur http (ex : /var/log/apache2) : Méthodes de connexion [interne / ldap / sso] : ldap Bonjour, -Quelques personnes de notre établissement ont de façon inexpliquée un reliquat de congé non nul alors que ces personnes avaient consommé tous leurs congés en fin d'année 2016. -Comment sont calculés ces reliquats et à quel moment s'incrémentent-ils et se décrémentent-ils? -Peut-être que notre problème de reliquats inexpliqués est dû à une fausse manip lors du basculement de 2016 à 2017? Est-ce que la procédure de clôture d'exercice et de report des reliquats est décrite quelque part? Bien cordialement Alain C. Observatoire de Paris " __label__enhancement toggle email in case of device lab change __label__enhancement The module should create an invoice in Magento on a payment capture __label__enhancement Screen Consumer VSync Port from 2.1.0 to 2.2.0 "__label__question 0.44.05 version. Since now there's there's alpha of DFHack for DF 0.44.05, are there any plans on upgradding DF-AI? I've tried current version and it haven't even loaded properly. Maybe it just need recompiling with dfhack-0.44.05 libraries, but I'm not the one who can do such things." "__label__bug ⏰ index on parent table corrupts WHERE with navigations Coming from - [System.IndexOutOfRangeException: Index was outside the bounds of the array](https://github.com/Starcounter/Home/issues/303). ### Description The following SQL query fails if these conditions meet: ```sql SELECT COUNT(c) FROM Child c WHERE c.ParentId IS NULL AND c.Extra.Name IS NULL ``` - The `Child` table inherits from `Parent`. - The `ParentId` property is defined in the `Parent` table. - The `Extra` property is defined in the `Child` table. - There is an index over `Parent.ParentId` column. - There is at least one row, which is `Parent`, but not `Child`. **Stacktrace** ``` ""System.IndexOutOfRangeException: Index was outside the bounds of the array. at Starcounter.Internal.DbState.View.GetObject(TypeBinding binding, Int32 index, Object proxy) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Internal\DbState.cs:line 71 at Starcounter.Home.Issues303.Parent.Starcounter.IObjectView.GetObject(Int32 index) at Starcounter.Query.Execution.StringPath.EvaluateToString(IObjectView obj) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\Paths\StringPath.cs:line 154 at Starcounter.Query.Execution.ComparisonString.Evaluate(IObjectView obj) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\LogicalExpressions\ComparisonString.cs:line 141 at Starcounter.Query.Execution.LogicalOperation.Evaluate(IObjectView obj) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\LogicalExpressions\LogicalOperation.cs:line 127 at Starcounter.Query.Execution.LogicalOperation.Filtrate(IObjectView obj) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\LogicalExpressions\LogicalOperation.cs:line 209 at Starcounter.Enumerator.MoveNext() in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Mock\Enumerator.cs:line 256 at Starcounter.Query.Execution.IndexScan.MoveNextManaged() in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\Enumerators\IndexScan.cs:line 484 at Starcounter.Query.Execution.IndexScan.MoveNext() in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\Enumerators\IndexScan.cs:line 521 at Starcounter.Query.Execution.Aggregation.MoveNext() in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter\Query\Execution\Enumerators\Aggregation.cs:line 188 at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source) at Starcounter.Home.Issues303.Program.<>c.<Main>b__1_0() in D:\Temp\AdFenix\AdFenixDatabase\AdFenix\Program.cs:line 33 at Starcounter.Rest.UserHandlerInfo.RunUserDelegate(Request req, IntPtr methodSpaceUriSpaceOnStack, IntPtr parametersInfoOnStack) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter.Rest\UriHandlersManager.cs:line 201 at Starcounter.Internal.Web.AppRestServer.RunDelegateAndProcessResponse(IntPtr methodSpaceUriSpaceOnStack, IntPtr parametersInfoOnStack, Request req) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter.Apps.JsonPatch\AppRestServer.cs:line 96 at Starcounter.Internal.AppsBootstrapper.ProcessExternalRequest(Request req) in C:\TeamCity\BuildAgent\work\sc-10439\Level1\src\Starcounter.Apps.JsonPatch\AppsBootstrapper.cs:line 348 HResult=-2146233080 "" ``` ### How to reproduce - Run the code snippet below. It's a complete Starcounter application. - Navigate to `/select` to make sure that everything works. - Navigate to `/insert` to insert a `Parent` row. - Make sure that `/select` still works. - Navigate to `/create-index` to create an index over `Parent.ParentId` property. - Check `/select` - **it fails with the exception shown above.** - Navigate to `/drop-index` to drop the index. - Check `/select` - it works again. ```cs using System; using System.Linq; using Starcounter; namespace Starcounter.Home.Issues303 { [Database] public class Parent { public string ParentId { get; set; } } [Database] public class Child : Parent { public Extra Extra { get; set; } } [Database] public class Extra { public string Name { get; set; } } class Program { static string indexName = $""IX_Starcounter_Home_Issues303_{nameof(Parent)}_{nameof(Parent.ParentId)}""; static void Main() { Handle.GET(""/select"", () => { long count = Db.SQL<long>($@""SELECT COUNT(c) FROM {typeof(Child)} c WHERE c.{nameof(Child.ParentId)} IS NULL AND c.{nameof(Child.Extra)}.{nameof(Extra.Name)} IS NULL"").FirstOrDefault(); return $""Total count: {count}.""; }); Handle.GET(""/insert"", () => { Db.Transact(() => { new Parent(); }); return $""A {typeof(Parent)} row inserted.""; }); Handle.GET(""/create-index"", () => { Db.SlowSQL($""CREATE INDEX {indexName} ON {typeof(Parent)}({nameof(Parent.ParentId)})""); return $""Index {indexName} created.""; }); Handle.GET(""/drop-index"", () => { Db.SlowSQL($""DROP INDEX {indexName} ON {typeof(Parent)}""); return $""Index {indexName} dropped.""; }); } } } ``` " "__label__bug Branch 5x : Rename Results in "".md.md"" File Extensions To reproduce : 1. Link a page explicitly referencing "".md"" and click on that link. 2. Rename that page noticing that .md is already in the title and conserve it. Observed Outcome : The page name ends in .md.md. Expected Outcome : The page name ends in .md. Notes: I think this may also be the case on creating new pages." "__label__enhancement [engine] Add full content model type conversion Content model conversion should: * Work for all suffix hints (including _dt). * Work for both Groovy and Freemarker. * Work on any level in the content model, like model.repeater.date_dt. " __label__question Release 32 bit Hello sir can you build and give me 32 bit server and client please __label__enhancement Kör regenerate thumbnails på liveserver "__label__enhancement Port number as command line argument Port 8080 might be taken, so allow other options" "__label__bug Bug in v. 1.0.9 missing dist folder, publish error to npm use v. 1.0.6 for now ## Expected Behavior (description) ## Actual Behavior (description) ## Steps to Reproduce the Problem 1. 1. 1. ## Specifications - Package version: - VueJS Version: " __label__bug Feedback section missing Feedback section is not given to 4th experiment "__label__enhancement [TW-194] uda type=date/duration constraints _David Patrick says:_ Just as uda.foo.values can be pre-defined for the string-type, and might be pre-defined for the numeric-type (as in feature #1095) UDAs defined as type=date or type=duration would also benefit from pre-defined display formats and value constraints. The actual value will be maintained internally however it is maintained, but how a specific UDA is displayed when used, and the max and min allowable values, could be declared in the .rc file uda definition. Specifying dates or durations is different from strings or numbers, in that there are two aspects that a user might want to control; allowable date or duration range and desirable display format, and it may be impossible to describe the _range_ using the desired _display format_ . A good example is in constraining a uda.birthday. For birthday, _knowing_ the year is important, but _showing_ the year is optional, so ""Sept 24"" might be a preferred display style. Now for the birthday UDA, it might also make sense to constrain the allowable date range. Anything specified outside of ""1900-nextyear"" is probably a bogus value. In defining a Performance Review Date UDA, however, an allowable range between ""now-2014"" might make more sense. If we are to work within the existing configuration file format (and we should) then there are a couple of options to describe the desired format and range. On the uda.<name>.type= line, after the word ""date"" or ""duration"", we could precisely define the desired display format by appending the same date-format-defining characters as used by report.X.dateformat. (see man taskrc) This leaves the ""values"" line to define the allowable date-range or duration-range, without consideration of display format (unlike the format-by-example suggested for numeric sub-types) using the existing set of date and period specifiers. (see man task) uda.birthday.type=date b d uda.birthday.values=1900-2013 uda.p-review.type=date m/d/y uda.p-review.values=now-2014 uda.break-time.type=duration N uda.break-time.values=0min-120min This is really more about ground-level error control than anything else, because if sane and logical values are specified, it's more likely that a typo or a malformed mod or even a misunderstanding of the attributes function, will fall afoul of the allowable range, triggering an error." __label__enhancement Use large titles feature (iOS 11 guidelines) __label__bug At first launch of the app all webcams are titled as not updated Launch the app the first time may result all webcams to be outdated. Refresh once solve the issue. "__label__bug Can not display Chinese When I search in files ### Summary Can not display Chinese When I search in files, but the editor will not. ### Expected behavior none ### Actual behavior ![image](https://user-images.githubusercontent.com/15345948/35954796-c47af4f0-0cc6-11e8-952f-299d426b59cb.png) This setting will solve the problem, but to restart the above problems. ![image](https://user-images.githubusercontent.com/15345948/35954819-dc74075e-0cc6-11e8-8bdf-272bb271a029.png) ### Steps to reproduce (if needed) 1. Open Idea 2. used search ### Environment * Windows 10 64bit * WebStorm 2017.3.4 * Material Theme UI 1.6.0.4 I really like this theme, hope you can fix, thank you " "__label__bug hal_ticks() / os_getTime() don't work properly on Adafruit BSP I had a problem with a hang when waiting for a large number of osticks (100 ms worth) running on the Feather M0 LoRa with the MCCI 1.0.4 BSP. Investigation with prints() revealed that os_getTime() was limited (over a very large number of calls) to a range of 62 values. [junk.txt](https://github.com/mcci-catena/arduino-lmic/files/1654620/junk.txt) The following awk command was used to investigate: ```console $ awk 'BEGIN { Max = 0; Min = 2000000; } { if ($3 > Max) Max = $3 ; if ($3 < Min) Min = $3; } END { printf(""min: %x max: %x diff: %d\n"", Min, Max, Max-Min); }' /c/tmp/junk.txt min: 1069a9 max: 1069e7 diff: 62 ``` I have not yet investigated the source of this; looking at `hal_ticks()` it seems that the only way this can happen is due to a bug in `micros()` (for example, it is only a 16-bit value). But this needs to be fixed! " __label__enhancement Paste subfen in FilterPanel See issue #1571 "__label__enhancement Use Proxy as First line of Defense Although CORS settings have been setup on every API, we can also limit some origins from accessing certain URLs" __label__enhancement Use batch methods instead of individual API calls For sites with a lot of users and as per MailChimp's suggestions. __label__bug Accept usernames with numeric characters `leaflike.utils/alpha-num-pattern` doesn't match strings that contain numeric characters. "__label__bug Intermittent crash when pressing Alt-Space Unfortunately, this bug is entirely intermittent. But it's been bothering me for a few months, so I was hoping that someone could point me in the right direction to investigate/fix it. The gist of it is that sometimes, when I press <kbd>Alt</kbd><kbd>Space</kbd>, Cinnamon crashes. That is, the windows all lose their title bars for about a quarter second, then they all disappear and reveal my desktop, then about two seconds pass, then the windows re-appear as Cinnamon relaunches. If this happens twice in the same session, I'll get a dialog asking me if I want to use fallback mode. If it happens three times, Cinnamon drops down into the mode where it basically looks like GNOME 2. I have tried opening Looking Glass and inspecting the log immediately after this happens, but there are no error messages. I have no Cinnamon extensions, third-party desklets, third-party drivers, etc. Has anyone else experienced this issue? If not, is there anything I can do to capture more useful information the next time it happens? (Cinnamon 2.6.13, metacity 2.34.13, LM 17.2, Intel Haswell-ULT integrated graphics) " "__label__enhancement [TW-823] task-anon.sh _David Patrick on 2010-11-09T11:22:30Z says:_ A suggestion for a small shell script to anonymize task.data files. As we continue to expand the range and power of task, bug-hunting will get that much more ""interesting"". When asking for a sample of a users data file, instead of suggesting that they censure, or obfuscate sensitive data, wouldn't it be easier to suggest that they run % task-annon > nancy_bug123.data with no arguments, that could replace every letter in every ""word"" in desc, annotation, tag with ""x"", for example, and it could change every number to ""0"". The script shouldn't touch any special character, or whitespace, or date or time, as those may be related to the problem. This would have the added benefit of making the files way easier to parse visually, too. The script would act on the default pending.data file, but could be used with any task.data file by supplying the target. Precautions should be made not to overwrite actual data files. % task-anon ~/otherdir/otherfile.data > thisdontparse.data" __label__question replace postmarketos-splash with plymouth Many Linux distributions use plymouth for bootsplash as it is written in C/C+ and integrates with the initramfs early on during the boot process. homepage: https://www.freedesktop.org/wiki/Software/Plymouth/ "__label__bug [TW-5] color.due.today does not work _Max Muller says:_ In version 1.9.3, the setting taskrc option color.due.today fails to change the color of displayed tasks that are due today. I believe that tasks due today are actually being shown using the color setting for the color.overdue option (this would be a bug). For example, if I set color.due.today=yellow, and color.overdue=red, then all tasks that are either overdue or due today will be shown in red. Interestingly, using the task ""show"" command does indicate that the rc file is being read correctly, listing the value for color.due.today correctly as yellow. I believe this problem may be related to this bug, scheduled for correction in version 1.9.4: http://taskwarrior.org/issues/show/551 But does anyone know a workaround until the fix is complete?" "__label__bug Channels + rest framework: exception after file upload causes endless exception loop I've encountered a very annoying bug that seems directly related to channels.AsgiRequest. * Channels + asgi_redis * Django debug turned on * Have a django/rest_framework handler accepting a file upload * raise from this handler * While attempting to return 500 response page, Django will raise exception again * Catches exception, and tries to return 500 again... ----------- * OS, runtime environment,browser: Ubuntu 16.04, Python 3.6, curl ) * Library versions: channels-1.1.8, daphne-1.3.0, django-1.11.5, twisted-17.9.0, asgi_redis-1.4.3, rest_framework-3.6.4 * Django debug turned on (important) * Expected behavior: show an exception message in log, return 500 to the client * Actual behavior: exception loops in the server, client hangs * How you're running Channels: runserver + redis. Same situation with daphne. * Console logs and full tracebacks of any errors: This exception repeats in the 'loop': ``` Traceback (most recent call last): File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/core/handlers/exception.py"", line 41, in inner response = get_response(request) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/utils/deprecation.py"", line 140, in __call__ response = self.get_response(request) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/core/handlers/exception.py"", line 43, in inner response = response_for_exception(request, exc) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/core/handlers/exception.py"", line 93, in response_for_exception response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info()) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/core/handlers/exception.py"", line 139, in handle_uncaught_exception return debug.technical_500_response(request, *exc_info) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/views/debug.py"", line 81, in technical_500_response text = reporter.get_traceback_text() File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/views/debug.py"", line 333, in get_traceback_text c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/views/debug.py"", line 300, in get_traceback_data 'filtered_POST_items': list(self.filter.get_post_parameters(self.request).items()), File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/views/debug.py"", line 167, in get_post_parameters return request.POST File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/channels/handler.py"", line 160, in _get_post self._load_post_and_files() File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/http/request.py"", line 299, in _load_post_and_files self._post, self._files = self.parse_file_upload(self.META, data) File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/http/request.py"", line 255, in parse_file_upload warning=""You cannot alter upload handlers after the upload has been processed."" File ""/home/alexey.nazarenko/.pyenv/versions/p7reloaded_py/lib/python3.6/site-packages/django/http/request.py"", line 248, in upload_handlers raise AttributeError(""You cannot set the upload handlers after the upload has been processed."") AttributeError: You cannot set the upload handlers after the upload has been processed. ``` " __label__bug icon styling different on heroku __label__enhancement Set schema added and missing rows "__label__bug Creating SNS subscription in Elastic beanstalk failure I have an odd problem. I have been testing creating elastic beanstalk configurations. In my initial testing of the first 'dev' cluster over and over many times the SNS trigger worked to my lambda call and over into slack. Now when I create more environments in the same application set the subsequent clusters do not work with sending SNS. So the first one works the rest don't/won't. If I go on console and delete and recreate they work. Something stuck? Config files below. ``` variable ""region"" {} variable ""application_name"" {} variable ""min_instances"" {} variable ""max_instances"" {} variable ""instance_type"" {} variable ""scale_down_by"" {} variable ""scale_up_by"" {} variable ""rolling_update"" {} variable ""state_bucket"" {} variable ""vpcid"" {} variable ""subnetids"" {} variable ""elb_subnetids"" {} variable ""tag_env"" {} variable ""env_name"" {} variable ""ec2_role"" {} data ""aws_caller_identity"" ""current"" {} # revisit for remote s3 state, below section works for now #################################################### data ""terraform_remote_state"" ""network"" { backend = ""s3"" environment = ""${terraform.workspace}"" config { bucket = ""${var.state_bucket}"" key = ""terraform.tfstate"" region = ""${var.region}"" } } #################################################### provider ""aws"" { region = ""${var.region}"" } resource ""aws_sns_topic"" ""health_updates"" { name = ""${var.application_name}-${var.env_name}"" } resource ""aws_sns_topic_subscription"" ""health_updates_sns"" { topic_arn = ""arn:aws:sns:${var.region}:${data.aws_caller_identity.current.account_id}:${var.application_name}-${var.env_name}"" protocol = ""lambda"" endpoint = ""arn:aws:lambda:${var.region}:${data.aws_caller_identity.current.account_id}:function:ursa-sns"" raw_message_delivery = ""false"" } resource ""aws_elastic_beanstalk_environment"" ""ursa-vw"" { name = ""${var.application_name}-${var.env_name}"" application = ""${var.application_name}"" solution_stack_name = ""64bit Amazon Linux 2017.09 v2.8.4 running Multi-container Docker 17.09.1-ce (Generic)"" tier = ""WebServer"" tags { ProductCode = ""PRD00001453"" InventoryCode = ""ursa-beanstalk"" Environment = ""${var.tag_env}"" } setting { namespace = ""aws:autoscaling:asg"" name = ""MinSize"" value = ""${var.min_instances}"" } setting { namespace = ""aws:autoscaling:asg"" name = ""MaxSize"" value = ""${var.max_instances}"" } setting { namespace = ""aws:autoscaling:launchconfiguration"" name = ""EC2KeyName"" value = ""URSA"" } setting { namespace = ""aws:autoscaling:launchconfiguration"" name = ""IamInstanceProfile"" value = ""${var.ec2_role}"" } setting { namespace = ""aws:autoscaling:launchconfiguration"" name = ""InstanceType"" value = ""${var.instance_type}"" } setting { namespace = ""aws:autoscaling:trigger"" name = ""LowerBreachScaleIncrement"" value = ""${var.scale_down_by}"" } setting { namespace = ""aws:autoscaling:trigger"" name = ""UpperBreachScaleIncrement"" value = ""${var.scale_up_by}"" } setting { namespace = ""aws:autoscaling:updatepolicy:rollingupdate"" name = ""RollingUpdateEnabled"" value = ""true"" } setting { namespace = ""aws:autoscaling:updatepolicy:rollingupdate"" name = ""RollingUpdateType"" value = ""Health"" } setting { namespace = ""aws:ec2:vpc"" name = ""VPCId"" value = ""${var.vpcid}"" } setting { namespace = ""aws:ec2:vpc"" name = ""Subnets"" value = ""${var.subnetids}"" } setting { namespace = ""aws:ec2:vpc"" name = ""ELBSubnets"" value = ""${var.elb_subnetids}"" } setting { namespace = ""aws:ec2:vpc"" name = ""ELBScheme"" value = ""internal"" } setting { namespace = ""aws:ec2:vpc"" name = ""AssociatePublicIpAddress"" value = ""false"" } setting { namespace = ""aws:elasticbeanstalk:application"" name = ""Application Healthcheck URL"" value = ""TCP:26542"" } setting { namespace = ""aws:elasticbeanstalk:command"" name = ""DeploymentPolicy"" value = ""Rolling"" } setting { namespace = ""aws:elasticbeanstalk:command"" name = ""Timeout"" value = ""3600"" } setting { namespace = ""aws:elasticbeanstalk:environment"" name = ""EnvironmentType"" value = ""LoadBalanced"" } setting { namespace = ""aws:elasticbeanstalk:environment"" name = ""ServiceRole"" value = ""aws-elasticbeanstalk-service-role"" } setting { namespace = ""aws:elasticbeanstalk:healthreporting:system"" name = ""SystemType"" value = ""enhanced"" } setting { namespace = ""aws:elb:listener:80"" name = ""InstancePort"" value = ""26542"" } setting { namespace = ""aws:elb:listener:80"" name = ""InstanceProtocol"" value = ""TCP"" } setting { namespace = ""aws:elb:listener:80"" name = ""ListenerProtocol"" value = ""TCP"" } setting { namespace = ""aws:elasticbeanstalk:sns:topics"" name = ""Notification Topic ARN"" value = ""arn:aws:sns:${var.region}:${data.aws_caller_identity.current.account_id}:${var.application_name}-${var.env_name}"" } setting { namespace = ""aws:elb:listener:80"" name = ""ListenerProtocol"" value = ""TCP"" } } ```" "__label__bug Nechodí porovnání krajů kraje.geojson se nenačetl. Ale nevím proč, v repozitáři je." "__label__question bytes and packets counters are zero for netflow version 9 from cisco asa Hello, Could you please suggest how to resolve the problem with NetFlow v9 from the Cisco ASA? Asa ios version is 9.1(7)19, nfacctd 1.7.1-git (20180125-01), before used 1.5.2. it is mentioned in the release notes that they made some changes after ios 8.4.5: Resolution: Nothing from our side, customer needs to contact the collector support and get a version which supports the ASA side changes. The same has been acknowledged and fixed by multiple vendors: Solarwinds: http://thwack.solarwinds.com/thread/52901 (HotFix 3 for NTA 3.10) Plixer: http://www.plixer.com/blog/ipfix-2/cisco-asa-8-45-netflow-support/ (Scrutinizer version 10.1) ManageEngine: http://blogs.manageengine.com/2012/12/03/cisco-asa-8-45-and-above-netflow-updates/ (Patch for NetFlow Analyzer 9.7 Build 9700)" __label__question Where did the precompiled downloads move to? Where did the precompiled downloads move to? "__label__enhancement Finish libuv implementation This shouldn't be too bad. I just need to finish it up, and push it out to the libuv8 repo. " "__label__question Cannot enter newlines in HTML I had not done web programming in emacs for a while, but I recently started again, and discovered this problem. I currently bind [`""RET""` to `""M-j""` in my `prog-mode-hook`](https://github.com/NateEag/.emacs.d/blob/master/init.el#L229), which I run as part of my `web-mode-hook`. `""M-j""` is in turn bound by Emacs to `comment-indent-new-line`. Since web-mode [overrides `comment-indent-new-line` with `web-mode-comment-indent-new-line`](https://github.com/fxbois/web-mode/blob/e170d2720be0758a7ebe001e234231be52c83554/web-mode.el#L2357), I would expect them to be equivalent. However, they are not. I cannot enter newlines in HTML, as the following function shows: ``` elisp (defun test-web-mode-newline () ""Test case showing `web-mode-comment-indent-new-line' behaving differently from `comment-indent-new-line'."" (switch-to-buffer ""test-web-mode-comment-indent-new-line"") (web-mode) (insert ""<html> <body></body> </html>"") (goto-char 0) (search-forward ""<body>"") (web-mode-comment-indent-new-line) (switch-to-buffer ""test-comment-indent-new-line"") (web-mode) (insert ""<html> <body></body> </html>"") (goto-char 0) (search-forward ""<body>"") (comment-indent-new-line) (split-window-right) (other-window 0) (switch-to-buffer ""test-web-mode-comment-indent-new-line"")) ``` I saved that to my .emacs.d in `web-mode-newline-report.el`, then started Emacs as follows: ``` emacs -Q -l ~/.emacs.d/web-mode-newline-report.el -l ~/.emacs.d/elpa/web-mode-20160717.1201/web-mode.el ``` then did `M-:` and evaled `(test-web-mode-newline)`. The result is that `comment-indent-new-line` inserts a newline between the <body> tags, but `web-mode-comment-indent-new-line` does not. I'm running the [current version of web-mode from MELPA](http://melpa.org/#/web-mode). `(emacs-version)` reports the following: ``` ""GNU Emacs 24.5.1 (x86_64-apple-darwin13.4.0, NS apple-appkit-1265.21) of 2015-04-10 on builder10-9.porkrind.org"" ``` " "__label__bug Exact/partial matching option box issue If you upload a mapping file, hit submit, you can still change the mapping options. This is okay, but things get kind of weird when you change the mapping file or hit reset. If you hit reset then switch the matching option, the mapping file gets reapplied. Pretty sure this is because the mapping file isn't actually getting cleared when hitting the reset button. Another related issue: If you submit a tree with mapping file, then hit reset, then switch from exact to partial mapping, if that mapping file would have generated errors, the error pops up when switching mapping type even though the stuff is gone. " "__label__bug ""0 values"" shouldn't add a new line See: https://cdn.discordapp.com/attachments/304638415717007360/410882861596672020/unknown.png" __label__enhancement Add a warning modal when closing a file that contains changes __label__bug Don't pester user to reauthorize if no network connection "__label__enhancement Re-organize Replication Deployment Currently the approach is timely and also doesn't deploy replication properly. We need to reconfigure the process for deployment to be faster and to also make sure it works immediately, without any intervention." "__label__bug CarePlan Tags and Goals not checked - i-tags, i-goals loaded after CP, checking not possible" __label__question [기능 정의] 캔버스의 경계를 지금대로 설정할것인지. 사실상 캔버스에 경계가 없어도 괜찮은 상태로 개발이 된것같다. 지도상 마이너스방향으로 가더라도 딱히 문제가 되는부분은 없음. 각 chunk는 따로 구역이 존재하므로 문제도 아주 멀리 누가 만든다고 해도 큰 문제는 없을것으로 판단됩니다. 다만 지도나 현재 위치에 대한 직관적인 UI표시를 어떻게 할지 고민이 됩니다. 어떻게 하면 될까요. 지금 지도 같은경우 상자에서 십자가 표시를 움직이면되지만. 만약 경계(끝)이 없으면 어떻게 해야할지. 지도를 누르면 이동하는 기능도 뭔가 다른형태가 되어야 할 수도. __label__bug Bug with upgrade spells and stats (sometimes) "__label__bug ""Validation errors"" message persists and blocks submission despite clearing the offending field Reported by a user, should invesrigate and try to reproduce. Offending field was a malformed url in offers.info_url. " "__label__enhancement Investigate possible memory leaks, fix if possible Garbage collection is disabled for cycles, so cycles can become a problem Like other AddressableElements (Why is Variable an AddressableElement subclass?), a Variable has a Context, but it's unclear what it's needed for. - Variables don't have doc comments due to php-ast Even if they did, the Context should be passed in. This may contribute to increased memory usage Context has a Scope, which has a variable map, and the variables in the variable map refer to the context - This is a loop preventing garbage collection - There may be other loops I'm not aware of --- Also, Issue keeps track of the Context in which it was emitted, which refers to multiple variables. The memory usage should be reduced if the Context is converted to a plain FileRef when it's unused (currently always?) - do that within Issue::maybeEmit\*" __label__bug TypeError: Cannot read property 'length' of undefined in `getActionForClassLikeIncorrectImplementsInterface` during `getCodeFixes` tsserver version: 2.6.1 hitting sessions: 2517 stack: ``` TypeError: Cannot read property 'length' of undefined at Object.getActionForClassLikeIncorrectImplementsInterface [as getCodeActions] (tsserver.js:75104:104) at tsserver.js:74988:33 at Object.forEach (tsserver.js:1312:30) at Object.getFixes (tsserver.js:74987:16) at tsserver.js:80109:35 at Object.flatMap (tsserver.js:1550:25) at Object.getCodeFixesAtPosition (tsserver.js:80107:23) at IOSession.Session.getCodeFixes (tsserver.js:86515:64) at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (tsserver.js:85423:61) at tsserver.js:86669:88 at IOSession.Session.executeWithRequestId (tsserver.js:86660:28) at IOSession.Session.executeCommand (tsserver.js:86669:33) at IOSession.Session.onMessage (tsserver.js:86689:35) at Interface.<anonymous> (tsserver.js:87881:27) at emitOne (events.js:96:13) at Interface.emit (events.js:191:7) at Interface._onLine (readline.js:241:10) at Interface._normalWrite (readline.js:384:12) at Socket.ondata (readline.js:101:10) at emitOne (events.js:96:13) at Socket.emit (events.js:191:7) at readableAddChunk (_stream_readable.js:178:18) at Socket.Readable.push (_stream_readable.js:136:10) at Pipe.onread (net.js:560:20) ``` "__label__enhancement Webmanifest support For the app to support adding to homescreen, it should include a manifest stating it's capabilities. Probably even a fullscreen option. I'll forge a pull-request later this day. " "__label__enhancement Exporting count matrix Hello, I am wondering how I can export the count matrix which is derived from the input parameters. I just only able to have the values of screening performance of the given simulated study as the output of Crispulator. Are you providing any output/function which reveals the count matrix of each sample? If it is not then could you advise me to implement the function? Thank you," "__label__bug sci-visualization/amide gnome dependencies missing ? Hello, I met these errors when trying to install amide : ``` checking for glib-2.0 >= 2.16.0 gobject-2.0 >= 2.16.0 gtk+-2.0 >= 2.16.0 libxml-2.0 >= 2.4.12 libgnomecanvas-2.0 >= 2.0.0 ... no configure: error: Package requirements ( glib-2.0 >= 2.16.0 gobject-2.0 >= 2.16.0 gtk+-2.0 >= 2.16.0 libxml-2.0 >= 2.4.12 libgnomecanvas-2.0 >= 2.0.0 ) were not met: No package 'libgnomecanvas-2.0' found ``` and ``` checking for gnome-vfs-2.0 >= 2.16.0 ... no configure: error: Package requirements ( gnome-vfs-2.0 >= 2.16.0 ) were not met: No package 'gnome-vfs-2.0' found ``` Once gnome-base/libgnomecanvas and gnome-base/gnome-vfs installed, no problem anymore. " "__label__bug Try to make modal pop out without refreshing Each time modal pop up is selected, it always refresh the page" "__label__bug Conditional types don't narrow the type for Mapped types cc @ahejlsberg **TypeScript Version:** master <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** ```ts type A<T> = T extends string ? { [P in T]: void; } : T; type B<T> = string extends T ? { [P in T]: void; } : T; ``` **Expected behavior:** pass **Actual behavior:** ``` $ node built/local/tsc.js --noEmit index.ts index.ts(1,40): error TS2322: Type 'T' is not assignable to type 'string'. index.ts(2,40): error TS2322: Type 'T' is not assignable to type 'string'. ``` **Playground Link:** <!-- A link to a TypeScript Playground ""Share"" link which demonstrates this behavior --> **Related Issues:** " "__label__bug data rule for bottlefield that sometimes has data I have a container that is configured like the following: ``` { ""@timestamp"": ""DateTimeField (DateTime)"", ""agent"": { ""hostname"": ""CharField"", ""id"": ""CharField"", ""name"": ""CharField (Keyword)"" }, ""decoder"": { ""name"": ""CharField (Keyword)"" }, ""file"": ""CharField"", ""full_log"": ""CharField"", ""host"": ""CharField"", ""input_type"": ""CharField"", ""location"": ""CharField (Location)"", ""log"": ""CharField"", ""manager"": { ""name"": ""CharField (Keyword)"" }, ""rule"": { ""cis"": ""CharField"", ""description"": ""TextField (Keyword)"", ""firedtimes"": ""IntegerField"", ""groups"": ""CharField"", ""id"": ""CharField"", ""level"": ""CharField"" }, ""source"": ""CharField"", ""timestamp"": ""CharField"", ""title"": ""CharField"", ""type"": ""CharField"" } ``` the issue im having is that i get data into elasticsearch that sometimes has a `rule` configured, but sometimes not. like so: ``` { ... ""input_type"": ""log"", ""rule"": {}, ""decoder"": { ""name"": ""rootcheck"" }, ... ""timestamp"": ""2018-02-01T11: 37: 09-0500"" } ``` however, i need a datarule that detects when the `rule.level` breaches a certain threshold. if i configure this datarule, i get this traceback from the watchdog when it tries to handle the above message: ``` Traceback (most recent call last): File ""receiver/receiver.py"", line 120, in process_msg consumer_func(doc_obj) File ""/usr/src/app/cyphon/cyphon/transaction.py"", line 97, in _decorator result = func(*args, **kwargs) File ""/usr/src/app/cyphon/alarms/models.py"", line 72, in process alarm.process(doc_obj) File ""/usr/src/app/cyphon/watchdogs/models.py"", line 200, in process alert_level = self.inspect(doc_obj.data) File ""/usr/src/app/cyphon/watchdogs/models.py"", line 179, in inspect if trigger.is_match(data): File ""/usr/src/app/cyphon/watchdogs/models.py"", line 316, in is_match return self.sieve.is_match(data) File ""/usr/src/app/cyphon/sifter/sieves/models.py"", line 507, in is_match match = self._matches_all(data) File ""/usr/src/app/cyphon/sifter/sieves/models.py"", line 479, in _matches_all if not node.is_match(data): File ""/usr/src/app/cyphon/sifter/sieves/models.py"", line 597, in is_match return self.node_object.is_match(data) File ""/usr/src/app/cyphon/sifter/sieves/models.py"", line 232, in is_match match = self._check_value(value) File ""/usr/src/app/cyphon/sifter/sieves/models.py"", line 397, in _check_value return func(value) File ""/usr/src/app/cyphon/sifter/sieves/models.py"", line 380, in _numeric_match return operators[comparison](float(value), float(self.value)) TypeError: float() argument must be a string or a number, not 'NoneType' ``` do you have any recommendations for a way to have a bottlefield that sometimes has data and only try to run datarules on it if they aren't null? or does this break the concept of the ""bottle"" in that my data can have variations? or should cyphon do a better job of handling this case? i could probably submit a PR to do the latter but wanted to make sure there wasnt some obvious configuration i could change" __label__enhancement Use rewire [rewire](https://github.com/jhnns/rewire) is excellent tool for unit testing "__label__bug Mayhem Mode in API With the new Mode that came out in the winter update, need to have a mode for it (like 39 for trials). Thanks." "__label__bug transcript search field for organism not behaving as expected http://160.36.205.61:8095/organism/Quercus/robur?search_term=test&op=Search&organism=Quercus+robur&form_build_id=form-rup2Osi--yOsV4s1ZBKVHySM0xbRcBP3t5au31Nxu1Y&form_token=xtAApdNb749VC2yjrraOJXyput3RgL9NfRBSj972VQg&form_id=tripal_elasticsearch_gene_search_form * I can search against quercus rubor. i believe there are no features for this organism. * i get search results, I guess to quercus rubra?" "__label__enhancement Enrich messaging In case data was marked as invalid by a specific Validator, it should be reported. So client can get a validator name which failed. Example: ```php $data = [""name""=>""Alan""]; $pattern = [""name"" => "":string :len(10)""]; ``` The report should contain a message that ""Length 4 did not match expected 10"" or similar. This also should support multi-language environment." "__label__bug NullReferenceException when I click in the current position (blue dot) Hello Torben and thanks for your job. I have an issue when I click on the blue dot in the current position on iOS Here the Message log: ``` System.NullReferenceException: Object reference not set to an instance of an object at TK.CustomMap.iOSUnified.TKCustomMapRenderer.OnDidSelectAnnotationView (System.Object sender, MapKit.MKAnnotationViewEventArgs e) [0x00024] in <2db35de2eab74729b46d57fb7793cc08>:0 at MapKit.MKMapView+_MKMapViewDelegate.DidSelectAnnotationView (MapKit.MKMapView mapView, MapKit.MKAnnotationView view) [0x00014] in /Users/builder/data/lanes/5665/f70a1348/source/xamarin-macios/src/build/ios/native/MapKit/MKMapView.g.cs:1807 at (wrapper managed-to-native) UIKit.UIApplication:UIApplicationMain (int,string[],intptr,intptr) at UIKit.UIApplication.Main (System.String[] args, System.IntPtr principal, System.IntPtr delegate) [0x00005] in /Users/builder/data/lanes/5665/f70a1348/source/xamarin-macios/src/UIKit/UIApplication.cs:79 at UIKit.UIApplication.Main (System.String[] args, System.String principalClassName, System.String delegateClas ``` For information, I use the 2.00 stable version... To wait for the solution, where can I overload the event in order to do nothing when I click on it? Thanks for your help" "__label__enhancement Set minimum width to accommodate placeholder text Currently, placeholder text is not fully shown as width of input is less than placeholder text. Is there any way to do this?" __label__enhancement Integrate Postmark for Emailing "__label__enhancement Handle LB use-case in BugsnagRequest We currently set a scheme-less URL, since it's unlikely `isSecure` is accurate with SSL terminated at a load-balancer in any real-world scenario. We currently use the `remoteHost` as-is, which will just be the LBs IPs in those cases. There are standardized headers we could look for to make this work in this case." "__label__enhancement Call custom validation functions and pass the property name as argument Wouldn't it make sense to extend Wheels 2.X to have the possibility to call custom validation functions and pass the property name as argument to it? like validate(method=""checkPhoneNumber"", property=""phonenumber""); [https://groups.google.com/forum/#!topic/cfwheels/917rIx7w7y4](url) " __label__bug Order doesn't show up in order history ![image](https://cloud.githubusercontent.com/assets/10120609/21542683/d23f8106-cdbf-11e6-9b09-de9dd139fa67.png) ![image](https://cloud.githubusercontent.com/assets/10120609/21542689/e09eb9c4-cdbf-11e6-8348-68df9ae67cf8.png) Facebook doesn't show in the order history. Gotta fix that :) "__label__enhancement switch to .ui files Hi, it would be good to switch to `.ui` files from qtdesigner. It allows to fit the application layout better. Bests, Jan" "__label__question How can I change villages properties <!-- DO NOT DELETE THE CONTENT ON THIS PAGE. FILL OUT ENTIRELY --> <!-- PLEASE DIRECT SUGGESTIONS TO THE VAMPIRISM FORUM PAGE AT http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/2756555-vampirism-become-a-vampire-release-for-mc-1-10-and --> <!-- Please specify the Minecraft, Forge and Vampirism version your are using. DO NOT USE LATEST --> ## Versions - Minecraft: - Forge: - Vampirism: <!-- ISSUE DESCRIPTION - Please describe the issue in detail. --> ## Issue Description <!-- REPRODUCE STEPS - Please describe how I can reproduce this issue below. --> ## Reproduce Steps <!-- ADDITIONAL INFORMATION - Please post any crash reports, stacktraces, profiler reports, etc. here. --> ## Additional Information " __label__enhancement Lesson 016 - function main Function main has multiple options and needs a details explanation. "__label__enhancement Add Vue support See dndplay project, `SnooPHP\Vue` namespace" __label__enhancement Have uBridge thread stick to one core This will improve the performance a little bit. https://blog.cloudflare.com/how-to-receive-a-million-packets/ http://man7.org/linux/man-pages/man2/sched_setaffinity.2.html "__label__bug Verification of the mutex place with its grant signals inside a page To reproduce: 1. Create an STG with mutex grants grouped in a page, e.g. [me-hier.stg.work.zip](https://github.com/workcraft/workcraft/files/1505469/me-hier.stg.work.zip) 2. Verify for mutex place implementability. Observed behaviour: An error is issued: `Error: failed to expand reachability expression: There is no node S ""g1"".` Expected behaviour: Property verification should successfully pass. This happens because signal names are used in Reach expression instead of their hierarchical references. Another issue may be synthesis of such specifications, i.e. connecting a mutex inside a page to synthesised circuit." __label__bug Login format issue ![image](https://user-images.githubusercontent.com/31657407/34952574-3472c284-f9e8-11e7-84e7-f6794b75469d.png) "__label__bug [TW-1788] Closing a reopened task does not update the end time _Ralph Bean on 2016-03-22T18:53:28Z says:_ We had a bug filed on taskwarrior downstream in Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=1320284 The details are all there, including a decent reproducer." __label__enhancement add POST functionality to FathersController "__label__bug aarch64: c++11 narrowing error from int8_t to char initializer list This issue is occurring with the aarch64 target using clang 3.8. I am unable to reproduce it for the x64 target, and cannot explain the difference in behavior. Hopefully, the issue is simple enough that a patch can be made regardless. In BlenderDNA.cpp, match4() initializes a char array with int8_t values. This triggers a c++11 narrowing in initializer list error. ` bool match4(StreamReaderAny& stream, const char* string) { char tmp[] = { (stream).GetI1(), (stream).GetI1(), (stream).GetI1(), (stream).GetI1() }; return (tmp[0]==string[0] && tmp[1]==string[1] && tmp[2]==string[2] && tmp[3]==string[3]); } ` > BlenderDNA.cpp:58:9: error: non-constant expression cannot be narrowed from type 'int8_t' (aka 'signed char') to 'char' in initializer list [-Wc++11-narrowing] I couldn't find any explanation for this discrepancy other than a note that char and signed char are separate types according to the spec. This would suggest x64 *should* throw the same error. > Plain char, signed char, and unsigned char are three distinct types, collectively called narrow character types. If the GetI1() value was cast to char this would go away." __label__bug Adv Vis - MATLAB replaced code: RepMat slowdown In order to replace the repmat functionality i have triply nested loops which have a dramatic slowdown effect. This can cause the container to act like it is frozen but if you wait long enough it will recover. "__label__enhancement Binding Errors, Gradle Development Support So i've found a few issues. When using Sl4j simple in plugin A, and using Logback in the main project it will throw errors due to different bindings. Upon looking at pf4j code, I believe this is a class resolution conflict, therefore I believe it would be beneficial if the parent class loader was checked prior to the plugin's libs (As opposed to the child first method). Second issue is that the development mode only supports maven. I've resolved this in my project and will open a PR soon." "__label__bug Incremental Compilation doesn't work on certain systems. Can't interpret a date Hi, I try to follow the step described in the readme to get a something up and running. [Here is what I did to create a project and try having it running](https://gist.github.com/codec-abc/f04928bd0a0a3e41067b6fdffb0cd402). For more context, I used VSCode (thus the `code .` command) to modify the `mix.exs` file which is after the modification [like this](https://gist.github.com/codec-abc/3dbf748e228f34714b84633d4845f12e). Do you notice something wrong in my setup? Also before that, I tried to get something working on Windows and I cannot even got something close to work. I could not even call elchemy from the command line. Is Windows supported at this point?" "__label__enhancement Remove name dependency from zk-aws-users Currently Project-Customer is used for getting the User Pool ID, client ID et.c. This is unnecessary (there's really no advantage over just saving and re-using the created entity's ID) and these naming conventions should only be used for naming the pools and possibly for generating an id for a table where this data is saved." __label__bug The lib/ber/reader.js/Reader.prototype.readEnumeration() method always uses the tag type ASN1.Enumeration __label__bug Fix a bug that happens when using Group/Library Wishlist Checker [Source](https://www.steamgifts.com/go/comment/eLSEVdt) "__label__bug [TW-529] Sorting of holiday dates _Dirk Deimeke on 2012-02-06T13:15:18Z says:_ Maybe it is a feature request, I don't know. I set (at)calendar.holidays@ to (at)full@ and I would expect the Holiday dates to be sorted chronologically, when I do a (at)task cal@. But the dates are sorted in order of occurence in the config file." "__label__bug Use of is_methpipe_file_single causes loss of the first line https://github.com/smithlabcode/methpipe/blob/master/src/common/MethpipeFiles.cpp#L252 This function checks if the format of the input methcounts file. It has to skip potential headers and read the first non-header data line to determine file format, and only returns a boolean. However the file pointer is not reset afterwards." "__label__enhancement [Feature request] method to change 'optional' inline I am interested in two new methods for schemas similar to omit and pick: Method SimpleSchema.optional() Parameter: Either one string or an array of strings Override the optional variable to true for all specified attributes of the schema just for this one use Method SimpleSchema.required() Parameter: Either one string or an array of strings Override the optional variable to false for all specified attributes of the schema just for this one use If you agree this would be useful I can try writing this new functionality and make a pull request Example use case: ``` const Document = new SimpleSchema({ title: { type: String, label: 'Title', max: 120, optional: false }, content: { type: String, label: 'Content', max: 1000 } _id: { type: String, max: 1000 } }) const createDocument = new ValidatedMethod({ name: 'document.create', validate: DocumentSchema.omit('_id').required(['title', 'content']).validator(), run (document) { return Documents.insert(document, function (error, result) { if (error) { throw new Meteor.Error(500, 'Server error') } }) } }) const updateDocument = new ValidatedMethod({ name: 'document.create', validate: DocumentSchema.required('_id').optional(['title', 'content']).validator(), run (document) { return Documents.update(document._id, document , function (error, result) { if (error) { throw new Meteor.Error(500, 'Server error') } }) } }) ```" __label__bug Fix navbar tabs 'active' states Figure out why tabs in the navbar stay active "__label__bug Regression in segment time calculation - presentationTimeOffset is added when it should not be https://github.com/google/shaka-player/commit/20750504fecd4855f2997dcd2eb92a7024dc2bdc appears to have introduced a regression, with the key line in question being https://github.com/google/shaka-player/blame/master/lib/dash/segment_template.js#L324. Possibly more of the logic is suspect - I did not dig deeper beyond finding why the first numbers with my video were off. As far as I can tell, the function `find` appears to be there to determine the ~MPD start time in seconds~ segment position of the segment containing `periodTime`, which is an offset from the start of the period in seconds. Using `presentationTimeOffset` in this calculation is incorrect. PTO does not determine anything about the MPD timeline, it says what media timestamp (PTS) corresponds to periodTime = 0. You should only use it for aligning the media timeline with the MPD timeline. The referenced commit causes any segmentTemplate-using streams with presentationTimeOffset to have segments scheduled at the wrong moments in time. Still working on getting playable URL for you but I thought I would post immediately as it seemed pretty clear cut to me. Let me know if you want more supporting material and evidence and I am happy to provide. Example MPD: ``` <MPD type=""dynamic"" availabilityStartTime=""1970-01-01T00:07:00Z"" profiles=""urn:mpeg:dash:profile:isoff-live:2011,http://dashif.org/guidelines/dash264"" timeShiftBufferDepth=""PT15M"" minimumUpdatePeriod=""PT15S"" minBufferTime=""PT2S"" publishTime=""2018-01-17T14:49:04.237755Z"" xmlns=""urn:mpeg:dash:schema:mpd:2011""> <!--availabilityStartTime is adjusted to add a delay of 00:07:00 to the availability timeline compared to the authoring timeline. Timestamps in period/segment paths indicate authoring time (UTC), not availability time (UTC+delay). Playback uses availability time.--> <Period id=""p_1516198946762"" start=""P17548DT14H22M26.762S""> <!--Starts 2018-01-17 14:21:59.762Z (1,516,198,946,762 ms from epoch) on the authoring timeline.--> <!--Starts 2018-01-17 14:28:59.762Z (1,516,199,366,762 ms from epoch) on the availability timeline.--> <AdaptationSet segmentAlignment=""true"" group=""1""> <SegmentTemplate timescale=""1000"" duration=""4000"" media=""p_1516198946762/$RepresentationID$/$Number%06d$.m4s"" initialization=""p_1516198946762/$RepresentationID$/init.mp4"" presentationTimeOffset=""1516198946762"" /> <Representation id=""Track0"" mimeType=""audio/mp4"" startsWithSAP=""1"" bandwidth=""64000"" audioSamplingRate=""48000"" codecs=""mp4a.40.2"" /> </AdaptationSet> <AdaptationSet segmentAlignment=""true"" group=""2"" par=""16:9"" maxHeight=""720"" maxWidth=""1280"" frameRate=""30""> <SegmentTemplate timescale=""1000"" duration=""4000"" media=""p_1516198946762/$RepresentationID$/$Number%06d$.m4s"" initialization=""p_1516198946762/$RepresentationID$/init.mp4"" presentationTimeOffset=""1516198946762"" /> <Representation id=""Track1"" mimeType=""video/mp4"" startsWithSAP=""1"" bandwidth=""3000000"" sar=""1:1"" width=""1280"" height=""720"" codecs=""avc1.640032"" /> </AdaptationSet> </Period> <UTCTiming schemeIdUri=""urn:mpeg:dash:utc:http-head:2014"" value=""Manifest.mpd"" /> </MPD> ``` The period starts at some point on 2018-01-17. Both the MPD timeline zero point and the media timeline zero point are in 1970. The latter is indicated by presentationTimeOffset. The first segment to be played at period start is number 1. However, because of the problematic commit, Shaka adds PTO to the first segment, trying to play back something from 2066 instead (it tries to play segment number 379054268 as I post this)." "__label__question Date jumps back to current month When i go back to last month, or last year, choose a date, the calendar jumps back to current month. " "__label__enhancement Auto populate postcode Will require a theissen polygon of open data code point `intersect ($roamgeometry, $geometry)`" "__label__question Separate ""Algorithm"" and ""Mode"" into distinct properties? We have ``` { ""algorithm"": ""AES-GCM"", capabilities } ``` or ``` { ""algorithm"": ""SHA-256"", capabilities } ``` which doesn't match up well to the validation side of the system. For RSA, we have ``` { ""algorithm"": ""RSA"", ""algSpecs"": [{ ""modeSpecs"": { ""mode"": ""keyGen"", ""capSpecs"": [{ ""capabilities"": ""all the fields"" }] } }, { ""modeSpecs"": { ""mode"": ""sigVer"", ""capSpecs"": [{ ""capabilities"": ""all the fields"" }] } }] } ``` with the mode defined within the algorithm. I'm not exactly sure how it would look in terms of the symmetric ciphers and hash functions, but should the mode be a separate entity from the algorithm for consistency?" __label__enhancement New Lucky Patcher Activity Hi Dani. Thank you for your effort providing Candybar to us. Recently i got new Lucky Patcher activity and think you may want to add it to the blacklist. com.android.vending.billing.InAppBillingService.COIN/com.android.vending.billing.InAppBillingService.COIN.MainActivity-Original Thank you. "__label__bug java.lang.NoClassDefFoundError I seem to be having a problem with using the api. I've made a little program for testing the capabilities of the api, but after trying to build a new instance of the api `Api api = Api.builder().accessToken(oauthToken).clientId(CLIENT_ID).redirectURI(UIR).build();` the following error is given: `java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/impl/conn/PoolingHttpClientConnectionManager;` Full error log: https://pastebin.com/N9ihEaJt I've looked online for solutions, but I can't seem to find any fixes that work. Has anyone got any clue for how to fix this? Dependencies: ``` dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.spotify.sdk:spotify-player-24-noconnect-2.20b@aar' compile 'com.android.support:appcompat-v7:26.+' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.spotify.android:auth:1.0.0-alpha' testCompile 'junit:junit:4.12' compile('se.michaelthelin.spotify:spotify-web-api-java:1.7.3') { exclude group: ""commons-beanutils"", module: ""commons-beanutils"" } compile 'commons-beanutils:commons-beanutils:20030211.134440' } ``` " "__label__enhancement save results data to result folder right now, i like how dsAnalyze does separate posthoc folders 'analyzedData' and 'postSimPlots'. during sim plots already go to 'plots'. lets put data from `analysis_functions` into 'results' or 'analysis' instead of 'data' with all the actual simulation data files." __label__bug PHP execution timeout on multi-curve graphs for lots of service elements During rendering e.g. graphs w/ 4 curves for 40+ NICs [this loop](https://github.com/Icinga/icingaweb2-module-graphite/blob/65a4d3e3ec48cae7537766323c279988ab92694a/library/Graphite/Graphing/Template.php#L115) runs > 60s for me. "__label__enhancement Fireloop Offline Sync? #### What type of issue are you creating? - [ ] Bug - [ ] Enhancement - [•] Question #### Please add a description for your issue: Is there are offline sync implementation? I am building an app which fetches data from FireLoop api and saves to Sqlite, but i wanted to check if there is anything that Fireloop provides." "__label__bug Bulk Pack box defaults for Bulk Pack travelers: Excess boxes from qty on traveler need boxes, but the core qty on the traveler do not need boxes" "__label__enhancement [TW-1255] New testing framework _Renato Alves on 2014-02-09T23:44:57Z says:_ Initial proposal for new testing framework. The python TAP module was rewritten from scratch by me (simpletap). Licensing is the same as Taskwarrior. The attached patch provides ""simpletap"" module and ""version.py"" which includes the same as ""version.t"" and 3 more test cases to serve as example. The ""version.py"" file was not renamed to ""version.t"" to avoid replacing the existing file until the patch is accepted." "__label__enhancement Allow ifdefing out classes in the analogio module Some MCUs, like the nRF do not support analog output so it would be best to not have the AnalogOut class available on that port, right now it is no possible and the constructor just throws an exception, which will at least inform the user that they are trying to perform a unsupported operation." __label__bug `vue.config.js` is broken after run `vue invoke` ### Version 3.0.0-alpha.8 ### Steps to reproduce 1. `vue create test` and use default options 2. `cd test` 3. `vue invoke eslint` and use default options ### What is expected? Nothing changed ### What is actually happening? content of `vue.config.js` changed to `module.exports = undefined` <!-- generated by vue-issues. DO NOT REMOVE --> __label__bug Double firing of AJAX When submitting a license request the is returned the first time multiple requests could happen. This also could happen if you click the install button then exit the thickbox modal and click install on a separate download. Thinking an AJAX modal is needed or generated inline of each download. "__label__bug Crash on shutdown Ahoj, my Cinnamon often crashes, when I shut down my notebook. Cinnamon restarts in failsafe mode and the system shuts down after a while, therefore it is not critical. I'm running Cinnamon 3.2.7 on Linux Mint 18.1. Any additional info needed? Greetings ~HerHde" "__label__bug [TW-20] Task edit loses annotation precision, causing Journal updating code to incorrectly indicate annotions are deleted and recreated _Cory Donnelly says:_ I believe this is due to differences in timestamp precision between task at the commandline and the user's dateformat.annotation. A user may make an annotation at 2011-03-14 11:20:33.551, but @task edit@ presents it to the user as 2011-03-14 11:20. Because of how annotations are represented, when the user saves their edits task thinks that the original annotation was deleted and another was created using this truncated datetime value. I experience this in 1.9.4 and the current 2.0.0. Steps to reproduce follow. First, create a task with a few annotations. Waiting 60 seconds between annotations is not necessary, I just wanted to make sure the problem wasn't due to them all having the same annotation_[timestamp]. <pre> $ task add One; task 1 ann Annotation1; sleep 60; task 1 ann Annotation2; sleep 60; task 1 ann Annotation3; sleep 60; task 1 ann Annotation4 Created task 1. Annotated 1 with 'Annotation1'. Annotated 1 with 'Annotation2'. Annotated 1 with 'Annotation3'. Annotated 1 with 'Annotation4'. $ task 1 info Name Value ID 1 Description One 2011^03^14^21:43 Annotation1 2011^03^14^21:44 Annotation2 2011^03^14^21:45 Annotation3 2011^03^14^21:47 Annotation4 Status Pending UUID 062e4766-448b-458d-a283-66b1f31f4ab0 Entered 2011&03&14&21:43 (5 mins) Date Modification 2011&03&14&21:43 annotation added 'Annotation1' 2011&03&14&21:44 annotation added 'Annotation2' 2011&03&14&21:45 annotation added 'Annotation3' 2011&03&14&21:47 annotation added 'Annotation4' </pre> Next, using @task 1 edit@ change the text of the last annotation to 'Annotation5'. Result: <pre> $ task 1 info Name Value ID 1 Description One 2011^03^14^21:43 Annotation1 2011^03^14^21:44 Annotation2 2011^03^14^21:45 Annotation3 2011^03^14^21:47 Annotation5 Status Pending UUID 062e4766-448b-458d-a283-66b1f31f4ab0 Entered 2011&03&14&21:43 (8 mins) Date Modification 2011&03&14&21:43 annotation added 'Annotation1' 2011&03&14&21:44 annotation added 'Annotation2' 2011&03&14&21:45 annotation added 'Annotation3' 2011&03&14&21:47 annotation added 'Annotation4' 2011&03&14&21:51 annotation 'Annotation1' deletedannotation 'Annotation2' deletedannotation 'Annotation3' deletedannotation 'Annotation4' deletedannotation added 'Annotation1' annotation added 'Annotation2' annotation added 'Annotation3' annotation added 'Annotation5' annotation '' annotation '' annotation '' annotation '' </pre> Don't worry about the missing ""\n"" -- that was fixed in #704." __label__bug Can't login. Neterra.tv website changes. Edit: Fixed in [1.3.0](https://github.com/sgloutnikov/NeterraProxy/releases/tag/v1.3.0). "__label__bug remote method returning Promise not supported #### What type of issue are you creating? - [ ] Bug - [x ] Enhancement - [ ] Question #### What version of this module are you using? - [ ] ""@mean-expert/model"": ""1.0.9"", - [ ] ""@mean-export/model-register"": ""1.0.5"" https://github.com/mean-expert-official/model-register/blob/master/index.ts#L33 the wrapper function does not return value, adding a `return` solves the problem " "__label__question How to auto add friend from rooms As we know , we can add friends from room when we use WeChat for Web. ItChat https://github.com/littlecodersh/ItChat/tree/robot @itchat.msg_register('Friends') def add_friend(msg): itchat.add_friend(**msg['Text']) itchat.get_contract() itchat.send_msg(msg['RecommendInfo']['UserName'], 'Nice to meet you!') And I find some userful links: 微信网页版功能添加:群人员添加好友 https://bbs.125.la/forum.php?mod=viewthread&tid=13963316&extra=page=8 在线微信一键加群内好友怎么用 https://jingyan.baidu.com/article/cd4c2979082e2a756f6e6053.html **How can I use wechaty to auto add friend from a room?**" "__label__bug Think about the consequences of sending extra reports This is not limited to Qukeys, but it is relevant. We (sometimes) send extra HID keyboard reports during the key scan, after some keys have already had event handlers called. Those keys may have looked at the previous HID report, and acted on that information, and then we come along and issue a new report (quite probably adding a modifier key that wasn't in the old previous report) and keep going. This means that – potentially – _both_ `isModifierActive()` and `wasModifierActive()` will return the incorrect value for those keys. Now, I don't know of any cases where this would actually happen, but I want to do something to prevent it happening, anyway. Unfortunately, the only way I can think of to do this is to clear the report and call `handleKeyswitchEvent()` for each prior key in the keymap, which seems quite a burden." "__label__bug Assigning a deletion to a correct revision I am not sure, but this needs to be checked If something was deleted in revision 2, we want it to be assigned to rev 2 example rev0: 1 2 3 4 5 6 7 8 9 10 11 rev1: 1 2 3 4 5 [-6 -7] 8 9 10 11 Here, out list for token 6 and 7 would have revision 1 in it We look for the context of the change in revision 0 Do we assign the change object to revision 0 or 1?" __label__question Amiverry v2 custom controls explained Hi. After updating to amiberry v2 it seems the fire buttons are not working like they did in v1 input PLAYSTATION(R) 3 Controller? Can you please explain custom controls 1. What is North/South/East/West What should they assign to? 2. Why is Select/L&R Shoulder unselectable? 3. Which configuration do I ammend for primary joystick fire button? "__label__bug Counters don't take into account already-seens? I think https://github.com/zooniverse/Panoptes/blob/master/app/counters/subject_workflow_counter.rb is not taking subjects seen before by a user into account. Which is probably my fault since I missed it initially in this one: https://github.com/zooniverse/Panoptes/blob/master/app/workers/reset_project_counters_worker.rb Solving this will probably take two things: - Different counters for ""total classifications"" and ""unique classifications"". Otherwise reclassifications won't bubble up the counters to the project homepage. - I couldn't get SQL to do this uniquing, might be easiest to just add a `counts_towards_retirement` column on classifications and fill that with the lifecycle. Then we can add a simple where clause on it in the counter. We can then also just trigger the count worker from the lifecycle, regardless of whether it's a create or an update, since the worker can look at that field to know if an increment is needed. " __label__enhancement allow type column on ws browser __label__enhancement Support repeating inputs Be able to verify the values of the list of inputs instead of just one. Should add a method to set all the forms to multiple using a propriety. Then we need to be able to tell what's the ID of the existing row. "__label__enhancement Both currently supported authentication protocols are deprecated Twinfield offers OpenID now and the other methods (password and OAuth v1.0) are now deprecated. End of life is somewhere in 2018. Right now it also uses a LoginService to retrieve the session. When using OAuth 2.0 this is also not needed anymore. Also the OAuth v1.0 version is really poorly written (uses Javascript for a redirect) The library will need to refactored significantly to provide the changes for OAuth. I propose keeping version 1.0 backwards compatible and leaving in the old authentication ways. In 2.0 release, we should remove all the old mechanismes and implement OAuth: https://c3.twinfield.com/webservices/documentation/#/ApiReference/Authentication/OpenIdConnect#General-information I propose using thephpleageu/oauth2/client library for this: https://github.com/thephpleague/oauth2-client" "__label__enhancement Handle loops The reason that I cannot handle loops right now is that I wrap the function body in a `repeat` loop and use `next` to replace recursive calls. If I allow loops, and permit recursive function calls inside them, then I would need to be able to jump to the beginning of the outermost loop, whereas the call to `next` only gets me out of the inner-most loop. A first step towards handling loops would be to allow them as long as we don't call recursively inside them. A more challenging step is handling the general case... I don't know how to do that yet." "__label__bug error: java v1.8.0_151 or higher is not installed, but it is Hey, how does bolero (or, I assume IRI) detect the Java version on linux? `java -version` `java version ""1.8.0_151"" Java(TM) SE Runtime Environment (build 1.8.0_151-b12) Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)` Mine is correct, but bolero shows me `error: java v1.8.0_151 or higher is not installed`. EDIT: `echo $JAVA_HOME = /usr/lib/jvm/java-8-oracle/bin/java`" __label__bug [TW-1521] task project!=PROJECTNAME does not work (Regression) _Florian Petry on 2015-01-22T15:20:47Z says:_ Filtering tasks with `task project!=PROJECTNAME` works just fine in 2.3.0. After upgrading to 2.4.0 the message `The expression could not be evaluated.` is given. Using `!==` also does not work. A workaround: `task project.not:PROJECTNAME` __label__enhancement Add overall coinmarketcap data Request from Reddit user. This can be pulled from API. __label__enhancement [TW-144] Extend filtering capabilities to annotations _Johannes Schlatow says:_ I just noticed that annotations can't be explicitly addressed in filter expressions. I can very much imagine that in some cases users want to search only within annotations. Or e.g. I would like to filter a report as follows: <pre> task list annotation.any: </pre> This would suppress all tasks that aren't annotated. "__label__enhancement Add ability to mark a resource as exempt from a certain test Add ability to mark a resource as exempt from a certain test along side an optional reason and expiration date. Should include the ability to mark a resource as exempt from more than one test and from all tests. Would also be nice to add the ability to pull in suppressed checks on resources from trusted advisor (http://botocore.readthedocs.io/en/latest/reference/services/support.html#Support.Client.describe_trusted_advisor_check_result). edit (g-k): Moved the trusted advisor check to https://github.com/mozilla-services/pytest-services/issues/37 Planning to do this similar to the severity config #28 i.e. - [ ] add a conf file - [ ] for each exemption add an xfail marker in `pytest_runtest_setup` with reason, expiration time, and the conf filename and line number - [ ] add exemptions section to readme Markers will be serialized and included in the test metadata. It will need to match on resource and test names." __label__question Signed URLs Is it possible to sign somehow dynamic URLs using components from this lib? I mean use case with auto width taken dynamically from images' container on a client side. I made some debugging but didn't find anything. I guess that it's possible with SDK but probably only with static URLs which can be signed before moving an app to prod since appSecret can't be exposed to app clients. __label__bug Fix gulpfile There are several typos in the [`gulpfile`](gulpfile.js). Look through it and fix them. "__label__enhancement Improved support for tableless models with virtual properties When using a tableless model, you can define virtual properties in the init() as usual, then validations, labels, etc are available. These are stored in wheels.class.mappings but never included in wheels.class.properties, so they appear invisible to methods such as hasChanged() I've been mapping a tableless model to a remote datastore, so property methods are really useful to make the remote persistence layer behave as closely as possible as a local db based model. At the moment I'm just doing... ```` <cffunction name=""mappingToProperties""> <cfset StructAppend(variables.wheels.class.properties, variables.wheels.class.mapping)> </cffunction> ```` ... as an afterInitilization() callback and that seems to work well, also using $updatePersistedProperties() to maintain object state. I think that virtual properties should be part of the main wheels.class.properties struct and persistence methods promoted to part of the public API. Thoughts? " __label__bug 插件新版本检测数字不正确 ![tim 20180206165746](https://user-images.githubusercontent.com/4256611/35850173-e593a7cc-0b5e-11e8-90e5-7651a876e833.png) "__label__bug Graph hover tooltips jumping It doesn't show up when I record a GIF, but it looks like the graph hover tooltips are jumping a bit like they were before we initially added the debounce. Was that changed in the data panel refactor?" __label__bug test3 test3 "__label__enhancement Clean up module level settings Brought up by @kezabelle in #12: > The side-effect of doing it this way (and I'm guilty of it myself; a lot) is that it is cached at the module-level. It mostly isn't a problem for the app as-is because the biggest use-case it may break is `override_settings`, which isn't being used. > > There was a [ticket](https://code.djangoproject.com/ticket/21330) about documenting a specific way, but no resolution came of it. " "__label__bug [TW-506] no garbage collection with CmdAdd _Scott Kostyshak on 2012-08-05T06:03:05Z says:_ From what I understand, garbage collection should be done before displaying any task IDs to the user. When (at)task add@ is run, as long as (at)context.verbose (""new-id"")@ is true, the following string is output to the user: ""Created task <ID>"". To see why this is a problem, consider the following sequence of commands: <pre> scott(at)pango:~$ task add go for a run Created task 1. scott(at)pango:~$ task 1 delete Permanently delete task 1 'go for a run'? (yes/no) yes Deleting task 1 'go for a run'. Deleted 1 task. scott(at)pango:~$ task add eat ice cream Created task 2. scott(at)pango:~$ task [task next] ID Project Pri Due A Age Urgency Description 1 21s 0 eat ice cream 1 task </pre> Note that ""Created task 2"" should be ""Created task 1"". Thus, should CmdAdd be changed so that conditioning on (at)context.verbose (""new-id"")@, garbage collection is run? Read-only doesn't need to be checked because I assume that anyone running ""add"" has write privileges, right?" "__label__bug Exception when adding AssetQuery When adding a new AssetQuery an NPE is thrown, that's because the query asset doesn't return asset types and so the onCreate tries to iterate through null." "__label__bug apply ""incorrect password"" error message at TSI login New TSI's are giving an object error whenever user password is incorrect. Should return 'Incorrect Password' just as is done at databases now " __label__bug Broken sound preferences #17 did not fix the sound subdialog: ![screenshot](https://user-images.githubusercontent.com/7477678/35885753-2e571946-0b8f-11e8-857c-34a21d2b0159.png) "__label__enhancement Improve code documentation I was unable to find documentation of Hugo's data model, code architecture and interfaces. The lack of such hinders contributions from people other than those named @bep. My observation is that all non @bep contributions are peripheral. Without such documentation, trying to implement anything other than peripheral changes feels like working with spaghetti code --no offense intended. This is either due to my ignorance, or a state of code that is natural for beta versions. But having some kind of minimal documentation will not only increase contributions, it will force the data model and interface to be more coherent... Having to document something tends to have that effect. " "__label__bug Spørsmål med checkbox-svaralternativer må kunne stå ubesvart I et intervjuskjema er det mulig å lage spørsmål med checkbokser som svaralternativ. Hvis ingen checkbokser er huket av i et spørsmål, så vil valideringen gi en feilmelding." "__label__bug error about genome size and bad lexical cast when using a reference genome larger than 2^32 I installed strelka and test the demo script without any problem, and run on my own several human genome sequencing data successfully. But when I use strelka in wheat genome (15Gbp in size), the job always failed because the following error: `[2017-11-14T02:27:54.171311] [Memmery01] [21053_1] [WorkflowRunner] [ERROR] [2017-11-14T02:27:01.344216] [Memmery01] [21053_1] [CallGenome+callGenomeSegment_chromId_000_chr1A_part1_0002] ******** COMMAND-LINE ERROR:: argument after flag -genome-size (10323499860) cannot be parsed to expected type: bad lexical cast: source type value could not be interpreted as target ********` Then I tried to run on each chromosome individually (independent fasta file and bam file), and no problem exist. Any solution to this issue? Thanks very much. Jingzhong" "__label__bug Char init value should be from the valid values if any were given The characteristic value is set to some default value on init. However, if this is passed to the iOS client, which expects a pre-defined set of valid values, it will not be happy. Therefore, when setting the default, valid values should be considered." "__label__enhancement Getting to the data store stage One of the big issue for stats is that the data store is actually often a loosely connected and poorly designed bunch of spreadsheets, with none of the integrity that you'd expect, or require, to build the RAP. Sorting out this issue is a significant blocker to the development of an RAP. I wondered if you'd considered working backwards from the point at which the current RAP companion starts to give advice and guidance on persuading statisticians that creating proper data storage is a worthwhile effort, and how the build might be approached." "__label__bug Fix Travis CI failure in master `master` branch is [failing on Travis CI](https://travis-ci.org/alan-turing-institute/network-comparison/builds/338782382) at commit e57409d. Tests pass locally on OSX High Sierra 10.13.3 (17D47) in R-Studio Version 1.0.136. Error is in test `netdis_expected_graphlet_counts works for graphlets up to 4 nodes` (@test_measures_net_dis.R#438) ```r checking tests ... ERROR Running ‘testthat.R’ [303s/265s] Running the tests in ‘tests/testthat.R’ failed. Last 13 lines of output: if (identical(caller_env, globalenv())) { stop(""must be called in a function"") } if (missing(x)) { stop(""argument \""x\"" is missing"") } .Call(rlang_capturearg, NULL, NULL, pairlist(caller_env, strict), get_env()) })(object) ══ testthat results ═══════════════════════════════════════════════════════════ OK: 2353 SKIPPED: 1 FAILED: 1 1. Error: netdis_expected_graphlet_counts works for graphlets up to 4 nodes (@test_measures_net_dis.R#438) Error: testthat unit tests failed ```" "__label__question stdout not generated for unrecognised commands ### Node version (or tell us if you're using electron or some other framework): v8.9.1 ### ShellJS version (the most recent version/Github branch you see the bug on): 0.8.1 ### Operating system: MacOS: 10.12.6 ### Description of the bug: stdout not generated for unrecognised commands ### Example ShellJS command to reproduce the error: ```javascript const exec = shell.exec('echo hello', {silent: true}); console.log(exec.stdout); // logs ""hello"" ! const exec2 = shell.exec('blarg blarg', {silent: true}); console.log(exec2.stdout); // logs EMPTY LINE! ``` Expected result : should log ```command not found: blarg``` on exec2.stdout " __label__enhancement Add README.md for gh-pages * Add a README * Push the latest build "__label__bug [TW-5] color.due.today does not work _Max Muller says:_ In version 1.9.3, the setting taskrc option color.due.today fails to change the color of displayed tasks that are due today. I believe that tasks due today are actually being shown using the color setting for the color.overdue option (this would be a bug). For example, if I set color.due.today=yellow, and color.overdue=red, then all tasks that are either overdue or due today will be shown in red. Interestingly, using the task ""show"" command does indicate that the rc file is being read correctly, listing the value for color.due.today correctly as yellow. I believe this problem may be related to this bug, scheduled for correction in version 1.9.4: http://taskwarrior.org/issues/show/551 But does anyone know a workaround until the fix is complete?`" __label__question ImageTransport - Getting images from /image_raw topic? Is it possible to get the image stream from ROS like rospy does it? "__label__enhancement Needs a screenshot or two in the appdata This app needs one or more screenshots added to the appdata, otherwise it looks a bit rubbish in software stores." __label__enhancement Allow for arbitrary version bumps before version 1.0.0 This should be easy to add and allow users to check their changes before stabilizing a crate. __label__bug Pausing should always be allowed during countdown This was frustrating since the player would have to wait 2 seconds each time to get any control of the game back. "__label__enhancement Server config Per recent discussion, add the ability to override static and dynamic server settings (and perhaps other settings in the future) via a `config.json` file. File would also be added to `.gitignore`." __label__enhancement [TW-838] Add export.txt _Paul Beckingham on 2009-05-25T21:40:56Z says:_ David J. Patrick "__label__bug Email sender is hardcoded making all correspondence strait into spam folders. Quick search in the repo on ""`noreply@qua-kit.ethz.ch`"" reveals couple places where email is hardcoded. The domain name should be resolved at run time. A bonus task: think about other places in the repo where some links/emails might be hardcoded in past :)" "__label__bug 2.3.1 Error log is empty. Error log is empty then U tried to read through view event. But the thing is that the log is not empty. U can see file info by filemanager(size, dates) but the filemanager also can't view, empty. The trick is that if error log had some of Cyrillic symbols his gone(can't view). If U delete them, from it, then U can read it. Env.: MODx version 2.3.1 php 5.3.27 " "__label__question [BE4] Architecture des pyramides - Ancêtres multiples Bonjour ! Tout d'abord, je tiens à féliciter votre équipe pour la qualité de BE4, ROK4, et leur documentation. En seulement quelques heures, j'ai réussi à héberger un serveur WMTS basé sur les images satellite (BDORTHO_50cm en opendata) d'un département. Je n'ai pas vraiment de problème, mais seulement une question à poser (je n'ai pas trouvé de meilleur endroit qu'ici). Imaginons que je souhaite **charger plusieurs départements** (ou en général, plusieurs zones) avec BE4. **Méthode 1 :** En premier lieu, j'ai tendance à penser qu'il serait mieux d'utiliser plusieurs pyramides. (Cela permettrait, par exemple, en cas de mise à jour d'un département, de supprimer l'ancienne version d'un département) Ainsi, je peux agir comme suit : - Je charge le département 1 dans une pyramide toute neuve (pyr1) - Je charge le département 2 dans une nouvelle pyramide (pyr2), avec comme ancêtre, la pyramide pyr1 - ... - Je charge le département 10 dans une nouvelle pyramide (pyr10) avec comme ancêtre, la pyramide pyr9 Cette méthode impose alors que pyr10 contienne des liens symboliques (symlinks) qui pointent vers de symlinks qui pointent vers des symlinks ... pour enfin pointer vers les tuiles du département 1. Inconvénients : - Cela peut peut-être causer des problèmes de performance si on travaille avec de nombreuses zones : pour accéder à une simple image, on passe par des dizaines de symlinks. - Cela peut aussi être un problème si l'on souhaite supprimer une des pyramides (notamment si les images de ce département sont trop anciennes) : si l'on veut supprimer pyr5, on va alors perdre tous les liens permettant d'accéder à pyr1-2-3-4. Avantages : - Chaque département est dans une pyramide différente : c'est plus ""propre"". **Méthode 2 :** Une autre manière pourrait être de charger toutes les images dont je dispose dans une seule pyramide : - Je charge les départements 1, 2, ... et 10 dans une pyramide toute neuve, et je n'utilise que cette pyramide Inconvénients : - Je ne peux pas supprimer un département, si je souhaite faire de la place (par exemple, après en avoir chargé une version plus récente) - (pas forcément important) Le script de création de la pyramide est très long et la pyramide est très volumineuse Avantages : - J'ai toutes les images dans la même pyramide (pas de symlink) **Méthode 3 :** Du coup, j'ai pensé à une troisième manière de faire qui (je crois) n'est pas possible dans la version actuelle de BE4. Dans cette méthode : - Je charge le département 1 dans une pyramide neuve (pyr1) - Je charge le département 2 dans une pyramide neuve (pyr2) - ... - Je charge le département 10 dans une pyramide neuve (pyr10) - Enfin, je crée une nouvelle pyramide (pyrGlobale), sans source de données, mais avec 10 pyramides ancêtres : pyr1, pyr2, ..., et pyr10. Cela nécessiterait que les paramètres liés à la pyramide ancêtre (pyr_name_old, pyr_data_path_old, et pyr_desc_path_old) ne soient pas uniques, mais que l'on puisse en spécifier plusieurs. (Par exemple, sous forme de tableau) Ainsi, le fichier 'pyramids/descriptors/pyrGlobale.list' commencerait par les lignes suivantes : ------------------------------- 0=/home/moi/testRok4/pyramids/data/PYR1/ 1=/home/moi/testRok4/pyramids/data/PYR2/ ... 9=/home/moi/testRok4/pyramids/data/PYR10/ \# ------------------------------- A l'heure actuelle, on ne peut inclure qu'une seule de ces lignes, en plus de la ligne qui correspond à la source de données de la pyramide. Inconvénients : - Ce n'est pas encore possible à l'heure actuelle, donc cela nécessite du temps de développement. - D'autres inconvénients auxquels je n'aurais pas pensé ? Avantages : - Toutes les pyramides (sauf pyrGlobale) sont indépendantes les unes des autres. On peut supprimer/ajouter/modifier une pyramide aisément (L'idéal serait de pouvoir ajouter ou supprimer des ancêtres de pyrGlobale, mais dans le pire des cas, on peut regénérer cette pyramide, ce qui a priori ne sera pas trop long, car ce ne sont ""que"" des symlinks à créer) - Toutes les images sont accessibles avec un maximum de 1 symlink, donc pas de problème de performance. **Voilà voilà** ! J'imagine que vous avez beaucoup réfléchi à l'architecture des pyramides. Avez-vous déjà pensé à cette méthode (méthode 3) ? Qu'en pensez-vous ? Par curiosité, la quelle de ces méthodes est utilisée pour la couche satellite du géoportail ? (Peut-être une autre ?) Désolé pour le très long message, j'espère qu'il sera utile. Merci d'avance de vos réponses, et bonne journée !" "__label__enhancement Kalender-Export / abonnieren Es sollten nicht nur einzelne Termine per iCal abrufbar sein, sondern auch der komplette Kalender abonnierbar - damit man neue Termine automatisch im Kalender bekommt. Sollte dank der Vorarbeit beim Einzel-Termin-Export ziemlich simpel einzurichten sein." "__label__bug installation error Collecting persiantools Downloading persiantools-1.2.0.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File ""<string>"", line 1, in <module> File ""/tmp/pip-build-7vMtxF/persiantools/setup.py"", line 14, in <module> long_description=readme(), File ""/tmp/pip-build-7vMtxF/persiantools/setup.py"", line 7, in readme with open('README.rst', encoding='utf8') as f: TypeError: 'encoding' is an invalid keyword argument for this function ---------------------------------------- Command ""python setup.py egg_info"" failed with error code 1 in /tmp/pip-build-7vMtxF/persiantools/ " "__label__enhancement Grid filtering shows ""1 of 0"" when there are no results ### Description Grid filtering shows ""1 of 0"" when there are no results. ### Steps to reproduce 1. Go here: https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid.html 2. Filter by something that doesn't exist in the grid. 3. Observe the result. ### Result ""1 of 0"" ### Expected result I'm not sure. Maybe ""0 of 0"" or nothing displayed for page numbers? ### Attachments ![image](https://user-images.githubusercontent.com/8162597/32843756-8eda746c-c9ee-11e7-90bb-2795cd0600bb.png) " __label__bug Take out moving right/left arrow icons on header The icons left/right arrow are duplicating the feature that is already implemented below. It is also not a high priority to have a feature to switch between images left and right. Please take this out. ![screenshot from 2018-02-01 22-40-56](https://user-images.githubusercontent.com/1583873/35704890-2910f502-07a1-11e8-8bf4-d6a7ceb07daa.png) "__label__bug Analytics Usage is not submitted because of special characters like '&', 'comma' and ':' in exp_name. Analytics Usage is not submitted because of special characters like '&', 'comma' and ':' in exp_name." "__label__enhancement Preserve boot.py when Removing All Files from Device Currently the Remove All Files from Device option also removes boot.py. This is not a file you typically change in development (that is usually main.py and any others you create). That is why it is actually provided as part of the micropython firmware image. I would like to see a checkbox allowing boot.py to be preserved during an Erase. In fact it might be better implemented the other way around, you actually have to select the checkbox in order to erase boot.py as part of the device erasure, that will at least make users think about it. " "__label__bug AsyncReaderWriterLock can leak a lock and cause product to hang When using a cancellation token to get a lock, this can happen: 1, try to gain a lock from the UI thread with a cancellation token; 2, in the constructor of the Awaitable, the cancellation token is not triggered, and the lock is issued immediately (line 1782) 3, the cancellation token is cancelled 4, the client code calls Awaiter.IsCompleted, it turns true, because the cancellation token is cancelled. 5, the code calls into Awaiter.GetResults(), this.LockIssued will return false, because it is on a wrong thread, then it checks the cancellationToken, and throws OperationCanceledException. At that point, the lock is issued in the lock service, but the client code receives an exception, and will never be able to release it. " "__label__enhancement [TW-792] Config option to error out when database not found _Sander Marechal on 2010-11-21T18:10:12Z says:_ When task does not see a database (e.g. ~/.task is empty) it will create three empty files where the database will go. This is very annoying for people who use e.g. an sshfs mountpoint or other network share for the task data. When task is invoked before the remote filesystem is mounted, the files that task creates prevents the system from mounting the share later on. I would like a configuration option that would make taskwarrior error out instead of creating an empty database when no database can be found." __label__bug Data more than I have selected is labelled as anomaly __label__bug Date formatting exception ValueError: time data '2003' does not match format '%Y-%m' Some Advertisements car make year format is only YYYY . "__label__bug Missing dependent libraries of embulk-core 0.9.0 I tried to upgrade my plugin to v0.9.0 but encountered the error below. ```sh sishimura% ./gradlew compileKotlin :compileKotlin Using kotlin incremental compilation w: The '-d' option with a directory destination is ignored because '-module' is specified e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (3, 12): Unresolved reference: fasterxml e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (4, 12): Unresolved reference: google e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (33, 27): Unresolved reference: Optional e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (49, 26): Unresolved reference: Optional e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (75, 19): Unresolved reference: Optional e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (79, 22): Unresolved reference: Optional e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (83, 23): Unresolved reference: Optional e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (153, 25): Unresolved reference: it e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (158, 57): Unresolved reference: it e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (202, 14): Unresolved reference: JsonProperty e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (203, 14): Unresolved reference: JsonProperty e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/RemoteFileInputPlugin.kt: (204, 14): Unresolved reference: JsonProperty e: /path/of/embulk-input-remote/src/main/kotlin/org/embulk/input/remote/SSHClient.kt: (38, 48): Unresolved reference: it :compileKotlin FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileKotlin'. > Compilation error. See log for more details * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 1.716 secs ``` It seems that dependent libraries of embulk-core 0.9.0 cannot be resolved. ```sh sishimura% ./gradlew dependencies --configuration compile :dependencies ------------------------------------------------------------ Root project ------------------------------------------------------------ compile - Dependencies for source set 'main'. +--- org.jetbrains.kotlin:kotlin-stdlib:1.1.1 | \--- org.jetbrains:annotations:13.0 +--- com.hierynomus:sshj:0.19.1 | +--- org.slf4j:slf4j-api:1.7.7 | +--- org.bouncycastle:bcprov-jdk15on:1.51 | +--- org.bouncycastle:bcpkix-jdk15on:1.51 | | \--- org.bouncycastle:bcprov-jdk15on:1.51 | +--- com.jcraft:jzlib:1.1.3 | \--- net.i2p.crypto:eddsa:0.1.0 +--- com.jcraft:jzlib:1.1.3 \--- org.embulk:embulk-core:0.9.0 (*) - dependencies omitted (listed previously) BUILD SUCCESSFUL Total time: 0.729 secs ``` They can be resolved on embulk-core 0.8.39 ```sh sishimura% ./gradlew dependencies --configuration compile :dependencies ------------------------------------------------------------ Root project ------------------------------------------------------------ compile - Dependencies for source set 'main'. +--- org.jetbrains.kotlin:kotlin-stdlib:1.1.1 | \--- org.jetbrains:annotations:13.0 +--- com.hierynomus:sshj:0.19.1 | +--- org.slf4j:slf4j-api:1.7.7 -> 1.7.12 | +--- org.bouncycastle:bcprov-jdk15on:1.51 | +--- org.bouncycastle:bcpkix-jdk15on:1.51 | | \--- org.bouncycastle:bcprov-jdk15on:1.51 | +--- com.jcraft:jzlib:1.1.3 | \--- net.i2p.crypto:eddsa:0.1.0 +--- com.jcraft:jzlib:1.1.3 \--- org.embulk:embulk-core:0.8.39 +--- org.embulk:embulk-jruby-strptime:0.8.39 | \--- org.jruby:jruby-complete:9.1.13.0 +--- org.embulk:guice-bootstrap:0.1.1 | \--- com.google.inject:guice:4.0 | +--- javax.inject:javax.inject:1 | +--- aopalliance:aopalliance:1.0 | \--- com.google.guava:guava:16.0.1 -> 18.0 +--- com.google.guava:guava:18.0 +--- com.google.inject:guice:4.0 (*) +--- com.google.inject.extensions:guice-multibindings:4.0 | \--- com.google.inject:guice:4.0 (*) +--- javax.inject:javax.inject:1 +--- com.fasterxml.jackson.core:jackson-annotations:2.6.7 +--- com.fasterxml.jackson.core:jackson-core:2.6.7 +--- com.fasterxml.jackson.core:jackson-databind:2.6.7 | +--- com.fasterxml.jackson.core:jackson-annotations:2.6.0 -> 2.6.7 | \--- com.fasterxml.jackson.core:jackson-core:2.6.7 +--- com.fasterxml.jackson.datatype:jackson-datatype-guava:2.6.7 | +--- com.fasterxml.jackson.core:jackson-databind:2.6.7 (*) | +--- com.fasterxml.jackson.core:jackson-core:2.6.7 | \--- com.google.guava:guava:15.0 -> 18.0 +--- com.fasterxml.jackson.datatype:jackson-datatype-joda:2.6.7 | +--- com.fasterxml.jackson.core:jackson-annotations:2.6.0 -> 2.6.7 | +--- com.fasterxml.jackson.core:jackson-core:2.6.7 | +--- com.fasterxml.jackson.core:jackson-databind:2.6.7 (*) | \--- joda-time:joda-time:2.2 -> 2.9.2 +--- com.fasterxml.jackson.module:jackson-module-guice:2.6.7 | +--- com.fasterxml.jackson.core:jackson-core:2.6.7 | +--- com.fasterxml.jackson.core:jackson-databind:2.6.7 (*) | \--- com.google.inject:guice:3.0 -> 4.0 (*) +--- ch.qos.logback:logback-classic:1.1.3 | +--- ch.qos.logback:logback-core:1.1.3 | \--- org.slf4j:slf4j-api:1.7.7 -> 1.7.12 +--- org.slf4j:slf4j-api:1.7.12 +--- org.jruby:jruby-complete:9.1.13.0 +--- com.google.code.findbugs:annotations:3.0.0 +--- org.yaml:snakeyaml:1.18 +--- javax.validation:validation-api:1.1.0.Final +--- org.apache.bval:bval-jsr303:0.5 | +--- org.apache.bval:bval-core:0.5 | | +--- org.apache.commons:commons-lang3:3.1 -> 3.4 | | \--- commons-beanutils:commons-beanutils-core:1.8.3 | \--- org.apache.commons:commons-lang3:3.1 -> 3.4 +--- io.airlift:slice:0.9 +--- joda-time:joda-time:2.9.2 +--- io.netty:netty-buffer:4.0.44.Final | \--- io.netty:netty-common:4.0.44.Final +--- org.fusesource.jansi:jansi:1.11 +--- org.msgpack:msgpack-core:0.8.11 +--- com.ibm.icu:icu4j:54.1.1 +--- org.eclipse.aether:aether-api:1.1.0 +--- org.eclipse.aether:aether-spi:1.1.0 | \--- org.eclipse.aether:aether-api:1.1.0 +--- org.eclipse.aether:aether-util:1.1.0 | \--- org.eclipse.aether:aether-api:1.1.0 +--- org.eclipse.aether:aether-impl:1.1.0 | +--- org.eclipse.aether:aether-api:1.1.0 | +--- org.eclipse.aether:aether-spi:1.1.0 (*) | \--- org.eclipse.aether:aether-util:1.1.0 (*) \--- org.apache.maven:maven-aether-provider:3.3.9 +--- org.apache.maven:maven-model:3.3.9 | +--- org.codehaus.plexus:plexus-utils:3.0.22 | \--- org.apache.commons:commons-lang3:3.4 +--- org.apache.maven:maven-model-builder:3.3.9 | +--- org.codehaus.plexus:plexus-utils:3.0.22 | +--- org.codehaus.plexus:plexus-interpolation:1.21 | +--- org.codehaus.plexus:plexus-component-annotations:1.6 | +--- org.apache.maven:maven-model:3.3.9 (*) | +--- org.apache.maven:maven-artifact:3.3.9 | | +--- org.codehaus.plexus:plexus-utils:3.0.22 | | \--- org.apache.commons:commons-lang3:3.4 | +--- org.apache.maven:maven-builder-support:3.3.9 | | +--- org.codehaus.plexus:plexus-utils:3.0.22 | | \--- org.apache.commons:commons-lang3:3.4 | +--- com.google.guava:guava:18.0 | \--- org.apache.commons:commons-lang3:3.4 +--- org.apache.maven:maven-repository-metadata:3.3.9 | \--- org.codehaus.plexus:plexus-utils:3.0.22 +--- org.eclipse.aether:aether-api:1.0.2.v20150114 -> 1.1.0 +--- org.eclipse.aether:aether-spi:1.0.2.v20150114 -> 1.1.0 (*) +--- org.eclipse.aether:aether-util:1.0.2.v20150114 -> 1.1.0 (*) +--- org.eclipse.aether:aether-impl:1.0.2.v20150114 -> 1.1.0 (*) +--- org.codehaus.plexus:plexus-component-annotations:1.6 +--- org.codehaus.plexus:plexus-utils:3.0.22 \--- org.apache.commons:commons-lang3:3.4 (*) - dependencies omitted (listed previously) BUILD SUCCESSFUL Total time: 4.518 secs ```" __label__enhancement Separate out the button-name rule Currently checks for: Non-empty text (ok) Whether the button contains an image that duplicates other text (separate) "__label__enhancement Publish to email It's possibly trivial, but it would be very useful if this had the ability to publish to an email address, for emailing draft documents. I'd imagine the best way would be to have it done as a proxy, like ssh, and just not run a public proxy for it so that there's no open relay issues. " "__label__enhancement Can I publish posts to self-hosted WordPress? It seems that the new feature publish to WordPress only works for the official WP site, not for my own site based on WordPress but not host on WP. Did I do something wrong? " "__label__bug Wrong language in references made with `\autoref` When making a reference with `\autoref` the inserted texts are always in English, regardless of the languge set in `docinfo.tex`" __label__enhancement [Selenium] Code review created TC's - feature/form_authentication https://bitbucket.org/capntc/selenium_workshop/branch/feature/form_authentication "__label__enhancement [TW-91] new virtual-tag; +HOLIDAYS _David Patrick says:_ This virtual tag in a filter causes any report to include events listed in any included holiday.data file. The inverse, -HOLIDAYS, could be use with the ""task cal"" command to suppress holiday listings, overriding other settings. Holiday items would be sorted according to due date and description, and while that sounds simple enough, it introduces for the first time a non-task item in a report. Holiday items would not have a task ID or UUID, which will certainly confuse some processes. Future non-task line-items, like listing-breaks, will also encounter this dilemma. One thought in how to deal with non-task items in a listing is to assign them all id:0, as opposed to ""no id"" .. if that's even possible.. ID 0 has represented some challenges in the past, but if it is recognized as a non-task-line-item, maybe it could become a feature, not a bug." "__label__enhancement New CommandBox Wheels-centric CLI Updated: Going to aim at a app wizard + scaffolding approach. See README on https://github.com/neokoenig/cfwheels-cli for detailed usage - [x] wheels info - [x] wheels new Scaffolding: - [x] wheels scaffold _[objectName]_ - [x] wheels destroy _[objectName]_ - [x] wheels generate _[model]_ _[objectName]_ _[options]_ - [x] wheels generate _[controller]_ _[objectName]_ _[options]_ - [x] wheels generate _[view]_ _[objectName]_ _[options]_ - [ ] wheels generate _[test]_ _[objectName]_ _[options]_ - [x] wheels generate _[property]_ _[objectName]_ _[columnName]_ _[columnType]_ _options_ DB Migrate: - [x] wheels dbmigrate create etc - [ ] wheels dbmigrate remove etc - [ ] wheels dbmigrate change etc - [ ] wheels dbmigrate rename etc - [x] wheels dbmigrate up - [x] wheels dbmigrate down - [x] wheels dbmigrate exec [Version] - [x] wheels dbmigrate latest - [x] wheels dbmigrate info etc Plugins: - [x] Request cfwheels-plugins category on forgebox - [ ] wheels plugins list - [ ] Awaiting https://ortussolutions.atlassian.net/browse/COMMANDBOX-433 to add interceptor point for wheels plugin, then `install pluginSlug` will be able to be installed in /plugins/ appropriately Templating: - [ ] Some sort of app skeleton templating system which can talk to the scaffold commands, i.e, bootstrap3 would create bootstrap3 markup when auto scaffolding a form input. - [ ] Store preferences in box.json? Testing: - [x] wheels test _[core]_ _[options]_ - [ ] wheels test _[app]_ _[options]_ - [ ] wheels test _[plugin]__[pluginName]_ _[options]_ Releases: - [x] Alpha Test Launch on Forgebox - [ ] Beta Test Launch on Forgebox - [ ] Document & Screencasts - [ ] Version 1.0.0 " "__label__question Parsing Json from Sd card on arduino Yun Hello, here is my json file: `{ ""data"": [ { ""nom"": ""leban"", ""prenom"": ""gerald"", ""jetons"": ""10"", ""numero"": ""9562"" }, { ""nom"": ""billon"", ""prenom"": ""yannis"", ""jetons"": ""10"", ""numero"": ""4562"" }, { ""nom"": ""valencia"", ""prenom"": ""gael"", ""jetons"": ""10"", ""numero"": ""7412"" }, { ""nom"": ""bru"", ""prenom"": ""joris"", ""jetons"": ""10"", ""numero"": ""8426"" }, { ""nom"": ""monteleone"", ""prenom"": ""guillaume"", ""jetons"": ""10"", ""numero"": ""1256"" } ] }` I want to parse it with arduino without adding this king of line: const char* json = ""{\""data\"":[{\""nom\"":\""leban\"",\""prenom\"":\""gerald\"",\""jetons\"":\""10\"",\""numero\"":\""9562\""},{\""nom\"":\""billon\"",\""prenom\"":\""yannis\"",\""jetons\"":\""10\"",\""numero\"":\""4562\""},{\""nom\"":\""valencia\"",\""prenom\"":\""gael\"",\""jetons\"":\""10\"",\""numero\"":\""7412\""},{\""nom\"":\""bru\"",\""prenom\"":\""joris\"",\""jetons\"":\""10\"",\""numero\"":\""8426\""},{\""nom\"":\""monteleone\"",\""prenom\"":\""guillaume\"",\""jetons\"":\""10\"",\""numero\"":\""1256\""}]}""; how can i do?" "__label__enhancement Crear un nuevo sitio para el fútbol de los martes Agregar la posibilidad de cambiar el template `index.html` para generar otro sitio para el fútbol de los martes. Otro template es ""más barato"", porque sino hay que poner demasiadas cosas en configuración: meta tags, imágen para redes sociales, textos, etc." __label__enhancement Upgrade UglifyJS dependency to deal with vulnerability Update UglifyJS. "__label__bug CloudFormation can't access bucket files Currently, when CloudFormation attempts to deploy the template created by our Plugin, CFN-init cannot access the files in the S3 bucket which are specified in our template. This needs to be fixed in order to allow successful deployment. Links that could help with this: - https://docs.aws.amazon.com/de_de/AWSCloudFormation/latest/UserGuide/aws-resource-authentication.html - https://aws.amazon.com/de/blogs/devops/authenticated-file-downloads-with-cloudformation/ - https://docs.aws.amazon.com/AmazonS3/latest/dev/PresignedUrlUploadObjectJavaSDK.html - https://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html" __label__bug idToken is missing on Android idToken is missing in TokenResponse handling of authorize() on Android (the same mapping is used for authorize() and refresh()) https://github.com/FormidableLabs/react-native-app-auth/blob/efd5f7bae611f2b33a490eb7f95e89d9a017cf3b/android/src/main/java/com/reactlibrary/RNAppAuthModule.java#L59-L62 IOS uses different mapping for authorize() ... https://github.com/FormidableLabs/react-native-app-auth/blob/efd5f7bae611f2b33a490eb7f95e89d9a017cf3b/ios/RNAppAuth.m#L57-L63 and refresh() ... https://github.com/FormidableLabs/react-native-app-auth/blob/efd5f7bae611f2b33a490eb7f95e89d9a017cf3b/ios/RNAppAuth.m#L117-L121 "__label__bug Can not watch live stream Today when I upgrade to 6.12.51, the every youtube live stream can not watch but can hear sound track. And first time play youtube video always can not watch but can hear sound track. But push return button then enter video again, the video will normal. https://imgur.com/ISKExmn" "__label__bug Validation errors shouldn't appear by default <img width=""395"" alt=""screen shot 2018-01-27 at 5 01 54 pm"" src=""https://user-images.githubusercontent.com/337888/35473667-d0985d64-0383-11e8-8861-e451d021465c.png""> " "__label__bug usage of blockchain.Blockchain.GetBlockBySeq can lead to panic Usage of blockchain.Blockchain.GetBlockBySeq(seq) can lead to panic if (seq > number of blocks in blockchain-1). At least it happens if (seq=1 and blockchain has only genesis block). In this case both return values are nil. This behavior is unexpected and can lead to nil pointer dereference. For example, it can happen in uncareful implementation of visor.Visor.GetSignedBlocksSince (see #960)." __label__enhancement Sidebar in separate editor As an user i would like to be able to edit sidebar contents in separate editor "__label__question Bid-Offer spread display My feature proposal is that we show the bid-offer spread somewhere in the trading view, perhaps at the top. " "__label__enhancement [TW-1607] Theme Support for missing UDAs. _Stefan Betz on 2015-05-02T18:02:12Z says:_ Since 2.4.3 is it not possible to apply colors like ""color.pri.none"", because UDA don't have an option to filter for none. uda.priority.color.L works fine for low priority tasks, but i want to colorize tasks without priority too." __label__bug GraphiQL not working in RDS implementation GraphQL endpoint works but graphiQL and playground doesn't work __label__enhancement copy whole _tpl folder no need to copy separate files __label__enhancement Implement SEO-friendly URLs for Info pages should have a path like: /info/faq __label__bug Handle 404 on Trainings https://www.smooth-code.com/formation-react-fondamental/janvier-paris-42xxx This page should return 404. __label__bug label ignores the @label-color set in theme config ### Report label ignores the @label-color set in theme config ### Possible Solution set @text-color-light to @label-color at _components/forms.less (line 48) "__label__bug Change EPEL Repository RPM location used during Docker build The Docker build installs the EPEL repository into the image in order to install pip (and later the required python modules via pip) into the image, [see here](https://github.com/apel/rest/blob/dev/Dockerfile#L6). The repository where the EPEL RPM is fetched from is incorrect, and should be changed as the Docker build now fails. " __label__enhancement Make code clearer by moving functions/classes to own file with similar functions/classes "__label__bug [* DateTimeV2] ""70's"" not recognized as decade Same for ""1970s""." "__label__question FIltering I have a question about filtering. If I have the items AZ, AB, CC, CD. Could I some how ""A"" AND ""-Z""? The expected result is to see only the element AB. (Elements that contains A and not Z) Thank you!" __label__enhancement 기본 socket.io 예제 실습(room) __label__bug Ignore calling freeze on regexes __label__bug //INCLUDE requiring full path This works... ``` //INCLUDE /Users/ilanpillemer/git/model-language/src/main/kotlin/Command.kt ``` This fails... ``` //INCLUDE Command.kt ``` with this error ``` [[kscript] [ERROR] /var/folders/cw/6_jr6ms12wgchzxj9s9kq5sm0000gn/T/tmp11233444675737493427.tmp/Command.kt (No such file or directory)] ``` __label__enhancement Sourcemaps for data-provider Generate sourcemaps for development "__label__bug Incompatible character encodings: ASCII-8BIT and UTF-8 - [ ] I tried updating to the latest version. - [ ] I can't, there is an issue. - [ ] I Am on Windows - [x] I Am on Bash on Windows 10 - [ ] I Am on Linux - [ ] I Am on OS X I just installed jekyll-assets (gem install, bundle update) . I cannot get image handling to work by using any of the examples, such as ``` {% asset img.png srcset:width=""400 2x"" srcset:width=""600 1.5x"" srcset:width=""800 1x"" %} ``` While running ""JEKYLL_ENV=production bundle exec jekyll build --watch --incremental"" I just get ""Liquid Exception: incompatible character encodings: ASCII-8BIT and UTF-8 in ""/mnt/e/_dev/_source/site/_posts/2018-02-09-test.markdown"" If I remove the example code above, jekyll works, apparently the jekyll-assets does not have anything to process. Mind you, I have to use ffi-1.9.18 as the newer version ffi-1.9.21 does not compile in Windows 10 developer mode bash á la Ubuntu. Either I am doing something wrong or there is a bug affecting only Windows environment somewhere. My guess is that it is in jekyll-assets as this was the last package I have installed. Could be something else. Here is trace: -- ``` JEKYLL_ENV=production bundle exec jekyll build --watch --incremental --trace Configuration file: /mnt/e/_dev/_source/site/_config.yml Source: /mnt/e/_dev/_source/site Destination: /mnt/e/_dev/_deploy/ Incremental build: enabled Generating... Asset caching is disabled by configuration. However, if you're using proxies, a cache might still be created. Populating LSI... Rebuilding index... Liquid Exception: incompatible character encodings: ASCII-8BIT and UTF-8 in /mnt/e/_dev/_source/site/_posts/2018-02-09-test.markdown bundler: failed to load command: jekyll (/usr/local/bin/jekyll) Encoding::CompatibilityError: incompatible character encodings: ASCII-8BIT and UTF-8 /var/lib/gems/2.4.0/gems/liquid-4.0.0/lib/liquid/block_body.rb:103:in `join' /var/lib/gems/2.4.0/gems/liquid-4.0.0/lib/liquid/block_body.rb:103:in `render' /var/lib/gems/2.4.0/gems/liquid-4.0.0/lib/liquid/template.rb:208:in `block in render' /var/lib/gems/2.4.0/gems/liquid-4.0.0/lib/liquid/template.rb:242:in `with_profiling' /var/lib/gems/2.4.0/gems/liquid-4.0.0/lib/liquid/template.rb:207:in `render' /var/lib/gems/2.4.0/gems/liquid-4.0.0/lib/liquid/template.rb:220:in `render!' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/liquid_renderer/file.rb:30:in `block (2 levels) in render!' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/liquid_renderer/file.rb:42:in `measure_bytes' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/liquid_renderer/file.rb:29:in `block in render!' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/liquid_renderer/file.rb:49:in `measure_time' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/liquid_renderer/file.rb:28:in `render!' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/renderer.rb:123:in `render_liquid' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/renderer.rb:76:in `render_document' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/renderer.rb:62:in `run' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:453:in `block (2 levels) in render_docs' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:451:in `each' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:451:in `block in render_docs' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:450:in `each_value' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:450:in `render_docs' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:190:in `render' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/site.rb:73:in `process' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/command.rb:28:in `process_site' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/commands/build.rb:65:in `build' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/commands/build.rb:36:in `process' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/lib/jekyll/commands/build.rb:18:in `block (2 levels) in init_with_program' /var/lib/gems/2.4.0/gems/mercenary-0.3.6/lib/mercenary/command.rb:220:in `block in execute' /var/lib/gems/2.4.0/gems/mercenary-0.3.6/lib/mercenary/command.rb:220:in `each' /var/lib/gems/2.4.0/gems/mercenary-0.3.6/lib/mercenary/command.rb:220:in `execute' /var/lib/gems/2.4.0/gems/mercenary-0.3.6/lib/mercenary/program.rb:42:in `go' /var/lib/gems/2.4.0/gems/mercenary-0.3.6/lib/mercenary.rb:19:in `program' /var/lib/gems/2.4.0/gems/jekyll-3.7.0/exe/jekyll:15:in `<top (required)>' /usr/local/bin/jekyll:23:in `load' /usr/local/bin/jekyll:23:in `<top (required)>' ``` " __label__bug Link to changed entity in the notification email does not work Current: You can view this Class at the link below: http://webprotege.stanford.edu#Edit:projectId=987d9f04-f085-4534-be1f-8619aa5f0c4d;tab=ClassesTab&id=http%3A%2F%2Fwebprotege.stanford.edu%2FRBW4DSH2394zxtPwdHEMDeW "__label__bug 4 star Est has no access to Heavy Spear+ Picking est and dropping her to 4 stars removes the ""+"" from ""Heavy Spear+"" but does not let me pick ""Heavy Spear+"" anymore. This is very low priority since I'd be choosing ""Slaying Spear"" anyway. ![](https://i.gyazo.com/a3e6b6cee74826eba635b6b26b84fd91.png) " "__label__bug StatsdGauge not sending updates if there's no change Hello! I used Micrometer if one of our projects and I'm very happy with the library. I however stumbled over one issue with `StatsdGauge`: the `poll` method checks old and new value and only sends the metric to StatsD server if the value changed. This doesn't work well with infrequent changes and `deleteIdleStats` StatsD configuration option. This option removes metric if it hasn't been updated in a 10s interval. If the gauge value doesn't change locally in Micrometer in 10 seconds, `statsd` simply deletes the metric. The `deleteIdleStats` option is important, because it prevents false positives - without it the last value is reported even if the app crashes for example and it's not sending values anymore. ```java @Override public void poll() { double val = value(); if(lastValue.getAndSet(val) != val) { publisher.onNext(lineBuilder.gauge(val)); } } ``` https://github.com/micrometer-metrics/micrometer/blob/388fc3ea5b00905e48868defc4e8ec065b22b5f0/implementations/micrometer-registry-statsd/src/main/java/io/micrometer/statsd/StatsdGauge.java#L51-L57 --- Could this check for last value be optional/configurable? I'm happy to contribute with a PR if you kick me into the right direction :-) " "__label__enhancement [TW-868] more subcommand _Eric Fluger on 2011-03-14T11:17:35Z says:_ for consideration: according the docs the task edit command lets us doing anything to a record including damage. caution is advised. the ""more"" pager and work-alikes usually have ""v"" command that will open the current file in vi. the effect is similar to opening the file read-only and then making it read-write. it maight be helpful to have a subcommand that opens a record in the pager rather than vi and let the user go from more t vi if necessary. could be called ""view"", ""page"", ""more"", or something like that. task view >ID Number> followed by a one stroke command to enter the editor might be more convenient and consequently safer than task <ID Number> task <ID Numbe> edit although ""task <ID Number> "" can be very easy to read." __label__enhancement Enhance ChordSpaceGroup with operations specifically on chords "__label__bug [TW-21] do not match a UDA if not followed by colon _Scott Kostyshak says:_ The parser gets excited when it finds the name of a UDA but sometimes the name of a UDA might not be used as a UDA; it might be intended to be part of a description. If the UDA is not followed by a colon, then it is not being (at least correctly) used as a UDA and should not be interpreted as such. <pre> $ task add testing $ task testing rc.uda.testing.type:string [No matches] </pre> I would expect the same output as <pre> $ task description.contains:testing rc.uda.testing.type:string ID Project Pri Due A Age Urgency Description 1 16s 0 testing </pre>" "__label__bug Path API should accept XML declaration in anyxml data nodes Currently, anyxml data nodes in the Path API do not accept XML strings with an XML declaration (e.g. `<?xml version=""1.0"" ?>`)." "__label__enhancement update tox config, to include python27 and pypy I dont know how to write those tox.ini files, and my previous attemps failed. Maybe someone could help out?" "__label__bug Golem bell makes no sound upon clicking on some blocks Normally, when you right click on a block with golem bell, it makes ringing sound. However, when you click on block you can normally interract with, it prevents the interraction but it makes no sound." __label__bug slider on carusel gets no mouse inputs __label__bug Issue with ignoring padding for specific edges Hey @DWilliames 👋 Thank you very much for this really handy plugin ❤️ But I noticed an issue with ignoring padding for specific edges 🐞 Please take a look at this screencast: https://monosnap.com/file/yxe5a1aA2zkYMHFykytMJr0m7gzLdh 🔍 Source file: https://monosnap.com/file/2DEcKoYR2aChmra8C2xsHshV7BBQOf 💎 macOS 10.12.6 (16G1212) Sketch 48.2 (47327) Paddy 1.0 Thanks in advance! Best! Ivan __label__enhancement Update Instabug on iOS "__label__question Send_file throws ""Attempted implicit sequence conversion"" I love your tutorials and samples, you do a great job! While trying to play around with the ""orders""-sample I run into an issue when trying to use send_file to return an image. I have added another route like this: ``` @api.route('/orders/<int:id>/photo', methods=['GET']) def get_orders_photo(id): return send_file('C:\\temp\\foobar.jpg', attachment_filename='foobar.jpg') ``` However, I encounter the following error: ``` Traceback (most recent call last): File ""C:\Python27\lib\site-packages\flask\app.py"", line 2000, in __call__ return self.wsgi_app(environ, start_response) File ""C:\Python27\lib\site-packages\flask\app.py"", line 1991, in wsgi_app response = self.make_response(self.handle_exception(e)) File ""C:\Python27\lib\site-packages\flask\app.py"", line 1567, in handle_exception reraise(exc_type, exc_value, tb) File ""C:\Python27\lib\site-packages\flask\app.py"", line 1988, in wsgi_app response = self.full_dispatch_request() File ""C:\Python27\lib\site-packages\flask\app.py"", line 1643, in full_dispatch_request response = self.process_response(response) File ""C:\Python27\lib\site-packages\flask\app.py"", line 1862, in process_response response = handler(response) File ""C:\Users\foobar\Desktop\app\decorators\caching.py"", line 51, in wrapped etag = '""' + hashlib.md5(rv.get_data()).hexdigest() + '""' File ""C:\Python27\lib\site-packages\werkzeug\wrappers.py"", line 906, in get_data self._ensure_sequence() File ""C:\Python27\lib\site-packages\werkzeug\wrappers.py"", line 955, in _ensure_sequence raise RuntimeError('Attempted implicit sequence conversion ' RuntimeError: Attempted implicit sequence conversion but the response object is in direct passthrough mode. ``` So as far as I can tell it's the etag that complains about the data, but I'm not sure what the best workaround for this would be. :)" "__label__enhancement Добавить еще один тип Binary Сейчас можно сериализовать бинарные данные указав тип-обертку Binary. Она по сути указатель на фиксированный блок памяти, но иногда надо чтобы при десереализации можно было увеличить размер памяти." "__label__bug New sampledata.json is incompatible Eric, your updated sample data does not work with my branch, and generates a long stacktrace of nullpointers when any library is opened. I looked it over and noticed that in the libraries, each member's personID does not match the id's of the people listed at the end of the file. Might be the issue, might not, but either way my branch's library manager cannot open your sampledata correct." "__label__enhancement Small contribution I wanted to contribute with a minimal contribution in the exterior design of this great hombrew, who in the exterior icon is using the Quake 4 and inside is out of square. I'll try to do something better afterwards. I hope they serve you and add it in your next release. Thank you very much for your great work. Keep in that way Preview: https://ibb.co/cXUFbH https://ibb.co/htDmix Download: https://mega.nz/#!YWpjRYhB!1POvbsECkKrDhMw_aqK9rzycqlL1lG8SRYd6FSzN5iU " "__label__bug Display current auto response values At the moment, the auto-response form in the endpoint page is always empty at page load. Update this to fetch the current auto-response values from the backend and display them on the form. - [ ] Endpoint for fetching auto-response values - [x] Store auto-response values in Vuex store - [x] Populate `endpoint-header` response form" "__label__bug [TW-1423] Using the date February 29th, in a non leap year does not fail well _Paul Beckingham on 2014-09-22T21:04:16Z says:_ Using YYYY-02-29 should fail in a more reasonable way than it does. Thanks to Black Ops Testing." __label__enhancement Allow modify GitHub Release Add new task to only modify. Will need to change build configuration and scripts. __label__bug 'Return' icon not visible in browser (GBPJPY) ![missing return icon](https://cloud.githubusercontent.com/assets/8998351/19221688/4d458cc0-8e40-11e6-89a1-4458c86b986b.PNG) Icon is visible when tile is popped out ![visible return icon](https://cloud.githubusercontent.com/assets/8998351/19221697/58f0c29c-8e40-11e6-8f51-b8a91c1828eb.PNG) __label__bug Ensure ValueEventListeners are closed when something finishes. "__label__bug Can't access camera with custom route Issue from @johny77g ( https://github.com/EtixLabs/cameradar/commit/cad7d24ccf068d7d45dcf9db746140ec716ee219#commitcomment-25169225 ) Hi, I exposed my camera for a simple test with very simple setup `username: admin`, `password: admin`. Updated `credentials.json` and routes as below. With option `-l` the generated connections were following: ``` DESCRIBE rtsp://:@x.x.x.x:x/tcp/av0_0 RTSP/1.0 (no usr and no login) DESCRIBE rtsp://:@x.x.x.x:x/udp/av0_0 RTSP/1.0 (no usr and no login) DESCRIBE rtsp://admin:admin@x.x.x.x:/ RTSP/1.0 (no command from routes) ``` BUT the right configuration was never generated. (I mean with: `admin`, `admin`, `tcp/av0_0`) Is it something wrong with my trial or some issue with `attack.go` file? ``` ----------credentials.json---------------- { ""usernames"": [ ""admin"" ], ""passwords"" : [ ""admin"" ] } --------------routes-------------------- tcp/av0_0 udp/av0_0 ```" "__label__bug Climate Explorer Frontend treats ""modtime"" as a data-describing metadata attribute 1.` util.shortestUniqueTimeseriesNamingFunction()`, which looks at how two datasets differ and creates a legend describing their differences, includes `modtime` in graph legends. ![modtimelegend](https://user-images.githubusercontent.com/4512605/36056959-d49531f0-0dbd-11e8-964d-93fc70b6f155.png) -------- 2.` DataControllerMixin.findMatchingMetadata()` can't find ""matching"" datasets; they don't ""match"" if their `modtime`s are different. Accordingly, seasonal and annual datasets matching a given monthly one can't be found, and a matching dataset with a different variable cannot be found for multivariable comparison.. The below graph _should_ show tasmax and tasmin, in all three time resolutions, but no dataset can be successfully matched to the monthly tasmax one, so it's the only one showing. ![notasmin](https://user-images.githubusercontent.com/4512605/36057006-4b900140-0dbe-11e8-9115-ddcad5cf0232.png) " "__label__bug Windows app still shuts down 0.4.1 Hi guys, just tried the latest release of the windows version, it looks like its still shutting down immediately after startup. The version fil says its this version: v1.8.1. Im not seeing any exceptions in the eventlog or any other logfile. #436 " __label__bug Logging categories not disabled by default __label__bug Listing clients Régler le listing des clients lorsque le template eCommerce sera prêt "__label__bug RemoveTask Message is not forwarded Currently remove task message is not forwarded. So removed task headers are still replicated on distance node. For successfully removing task headers from the network, we must do it in one broadcast. What is more, there is a possibility that in time of propagating this message it might happen that some node already sent a task header list with removed task header to node which already processed remove task message." __label__enhancement feat(ui): import a new workflow from ui "__label__bug Index page is broken, both images show up enlarged. " __label__bug Missing import of AsyncExecutor in io/Xhr.js **./io/Xhr.js** \+ var AsyncExecutor = require('../util/AsyncExecutor.js'); "__label__bug BUG: Some permalinks to not work Feedback: > The permalink just opens the inbox and after a 1-2 seconds the url also changes to the generic https://inbox.google.com/. If I copy the permalink adres quickly and try to open it in another application it still only links to the Inbox. > I was able to generate a permalink, but clicking on it doesn't actually go to the email. It just opens up my inbox. Thanks for working on this, though. I really need something like this to work." __label__bug CommandPost will make user quit if Plugin Fails on boot ...with developer mode disabled. __label__enhancement Conseil should support delegation operations "__label__bug Translate ""comment successfuly sent"" " "__label__bug 主页跳转多次标签库问题 在主页基础上多次跳转然后回到首页时,标签库的标签上浮速度会加快一倍. 影响用户体验" __label__bug Datashader images missing when there is a datetime axis holoviews/examples/user_guide/14-Large_Data.ipynb is missing the actual plots for the timeseries that have a datetime x axis: ![image](https://user-images.githubusercontent.com/1695496/35762706-2e806ed0-0861-11e8-8d5e-d9beea3d4bc5.png) __label__enhancement Fix OCR for 11_christmas_greetings.md This file contains OCR errors. Please fix them! "__label__bug Expression has dynamic (sub)type: {int, str} (line 15, shell.py) Read title, shedskin printed this when I compiled." "__label__bug Client does not accept name as an option Currently it is not possible to do `Client.start_link(""localhost"", 33722, [name: __MODULE__])`" "__label__enhancement страница настроек надо настройки. они общие для заведения, и их редактировать могут не все, в зависимости от роли, но про это потом. 1. время работы - 2 времени, тоесть вход 08.00 и 22.30, это время работы, вне этого промежутка заказы не принимаются 2. номер менеджера, он будет вылетать когда мы нажали оформить заказ и мол, ваш заказ принят, телефон для связи такой то @DimaRykunov когда @SuvorovAlexei завершит свою часть, тебе на странице настроек, нужно, сделать settings.service, на хтмл сделать эти поля и свделать обновление 1. выставлять время работы заведения, 2 датетайм пикера только на время 2. номер для свзяи с менеджером пока так ![image](https://user-images.githubusercontent.com/16489943/35771922-d62357a8-0945-11e8-9599-41337c383e30.png) " __label__bug Issues with compose box * mention is not working (not bringing names) * when I reply the post doesn't show until I return to the main subject [Android 7 Huawei mate 8] "__label__enhancement [TW-183] autocalculated uda _Zed Jorarard says:_ as stated in #1225 i wanted to have a task rating measurement of = importance / estimated time. so with that feature done we have the math functions to do that. but how do we generate there are 2 possibilites to achieve that imho: 1. advanced urgency as proposed by david #1076 2. extension to udas, so they can be autogenerated by hooks or similar. my idea would be to be able to specify in the config like: uda.utilcoef.value=importance / estimate i dont know much about the codebase so i cant say where a hook for this would be appropriate if 1 is preferred, this bug can be closed i think sorry if this is a bit redundant to #1225 atm i have a small script do to that externally, attached" "__label__question why Files Indexed is zero 2017-06-23 00:49:20,495 [INFO][diskover] Connecting to Elasticsearch 2017-06-23 00:49:20,499 [INFO][diskover] Checking for ES index: diskover-20170623 2017-06-23 00:49:20,502 [WARNING][diskover] ES index exists, deleting 2017-06-23 00:49:20,558 [INFO][diskover] Creating ES index Crawling: [100%] |########################################| 229/229 2017-06-23 00:49:21,125 [INFO][diskover] Finished crawling 2017-06-23 00:49:21,126 [INFO][diskover] Directories Crawled: 229 2017-06-23 00:49:21,126 [INFO][diskover] Files Indexed: 0 2017-06-23 00:49:21,126 [INFO][diskover] Elapsed time: 0.635111093521 tonyzhang@Ubuntu16:~/data/web/esphp$ " __label__enhancement Version 1.2 Release We expect to release Version 1.1.1 very soon. It could be very soon when strong bugs are fixed before the end of the week end. Game contributors may feel free to complete/modify. Release note : - Separate the Control Panel from the Game Panel (main contributor : @YannRobert) - Play in Windowed mode (main contributor : @YannRobert) - Where is it games have been improved (main contributor : @schwabdidier) - question in now written - Pictograms can be introduced in customized game - Question length is configurable - Tobii 4C and EyeX (main contributor : @coylz) - Use last version of Tobii's drivers - Dll are now directly in the jar __label__enhancement change timeout configuration from seconds to miliseconds __label__bug bug Issue Type: - [x] Bug Version & Environment: 0.5.4 Description: 树控件的default-expand-all以及expanded属性值无效 __label__enhancement UI設計 crowのUI設計 "__label__enhancement normal generation It would be really great if the library could generate normals, based on the smoothing groups, if the model itself doesn't contain any normals. " "__label__bug Mark As Read Not Working In Google Chrome The ""mark as read"" button seems to be blocked out in the Chrome extension. I'm running Chrome version 62.0.3202.75" __label__enhancement Spark GraphX PageRank Spark GraphX PageRank showcase __label__bug Path items appear twice in build menu **OS:** Windows 7 **Version:** 0.1.2 **Commit/Build:** b4018d3 **Screenshots / Video:** ![crazy castle 2018-01-31 17-41-48](https://user-images.githubusercontent.com/28242696/35651623-68480bd2-06ae-11e8-976b-d96b860e369b.png) "__label__bug Vindicator not working The vindication illager mob doesn't work, all other new mobs work. " "__label__bug lwDITA fails on MDITA files with URLs outside of links Free-floating URLs, those outside Markdown links, trigger exceptions. This is a lot like the (resolved) Issue #3. I used DITA-OT 3.0, but updated the lwDITA plugin to 2.0.2. With URLs inside angle brackets, like <http://dita-ot.org/>, lwDITA fails with ""No renderer configured for AutoLink"" With URLs without the angle brackets, like http://dita-ot.org/, lwDITA fails with ""No renderer configured for TextBase"" An URL inside a link, like the attachment below, is OK. I've attached a zip with a map and MDITA files, about as simple an example as you can get: [broken.zip](https://github.com/jelovirt/org.lwdita/files/1701085/broken.zip)" __label__enhancement Add wrappers for Receipt data "__label__bug Backend crashes after login ### Description I've upgraded an existing project to the new Neos version including the new UI. Now whenever you try to login to the backend it crashes. It's possible to fix this behaviour when opening up `/neos/legacy` after the crash and the switch back to `/neos/content` again when it has fully loaded. The error message shown up in the browser console is as following: ``` uncaught at application TypeError: Cannot read property 'contains' of undefined at http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Host.js?d0a8d95c:14:679338 at http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:30492 at http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:49888 at ArrayMapNode.iterate.HashCollisionNode.iterate (http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:53236) at Map.__iterate (http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:49857) at KeyedIterable.i.__iterateUncached (http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:30461) at seqIterate (http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:15423) at KeyedIterable.Seq.__iterate (http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:41412) at KeyedIterable.forEach (http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:70212) at http://dev.neos/_Resources/Static/Packages/Neos.Neos.Ui.Compiled/JavaScript/Vendor.js?8743a57c:1:19903 ``` As far as I can trace this error, it is somehow related to a translation function. This does not occur in a clean installation until adding dimensions. (Has been discussed in Slack before: https://neos-project.slack.com/archives/C050C8FEK/p1516972272000096) ### Steps to Reproduce 1. Follow the [upgrade guide](https://www.neos.io/download-and-extend/upgrade-instructions-3-2-3-3.html) 2. Login to the backend #### Expected behavior After logging in, the backend should load. #### Actual behavior The backend crashes all of a sudden while the ""Loading..."" screen is up. See the gif below: ![neos-ui-login-error](https://user-images.githubusercontent.com/8970747/35768241-fa9f5e26-08f8-11e8-9443-e92e6033bf67.gif) ### Affected Versions Neos: 3.3.3 UI: 1.0.4 " __label__enhancement Ability to add/edit events in user's calendar There is no ability to add/edit/delete events in a user's calendar. http://insured-crm_insured.kademi.com.au/users/mark2/Calendars/default/ For example: ![image](https://user-images.githubusercontent.com/826458/35949033-6869ed8e-0cd4-11e8-82d9-35a03759bf02.png) "__label__bug Destroying azurerm_managed_disks fail with ""context deadline exceeded"" Destroying Azure VMs with managed disks (`azurerm_managed_disk`) hang until the deadline. The `terraform apply` command fails with `StatusCode=204 -- Original Error: context deadline exceeded`. Subsequent `terraform apply` commands succeed without any updates since the original command destroys the VM and its managed disk successfully. I think the issue is due to an error on getting the response of managed disks state. ### Terraform Version ``` Terraform v0.11.3 + provider.azurerm v1.1.0 + provider.external v1.0.0 + provider.null v1.0.0 + provider.random v1.1.0 + provider.template v1.0.0 ``` ### Terraform Configuration Files https://github.com/dcos/terraform-dcos/tree/master/azure ### Debug Output ``` azurerm_managed_disk.spark_agent_managed_disk.1: Still destroying... (ID: /subscriptions/de81f8e5-ae2f-43d7-ba87-...sks/sg-prod-north-europe-spark-agent-2, 59m40s elapsed) 2018/02/08 18:32:46 [TRACE] dag/walk: vertex ""root"", waiting for: ""meta.count-boundary (count boundary fixup)"" 2018/02/08 18:32:46 [TRACE] dag/walk: vertex ""provider.azurerm (close)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" 2018/02/08 18:32:46 [TRACE] dag/walk: vertex ""meta.count-boundary (count boundary fixup)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" 2018/02/08 18:32:51 [TRACE] dag/walk: vertex ""provider.azurerm (close)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" 2018/02/08 18:32:51 [TRACE] dag/walk: vertex ""root"", waiting for: ""meta.count-boundary (count boundary fixup)"" 2018/02/08 18:32:51 [TRACE] dag/walk: vertex ""meta.count-boundary (count boundary fixup)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" azurerm_managed_disk.spark_agent_managed_disk.1: Still destroying... (ID: /subscriptions/de81f8e5-ae2f-43d7-ba87-...sks/sg-prod-north-europe-spark-agent-2, 59m50s elapsed) 2018/02/08 18:32:56 [TRACE] dag/walk: vertex ""root"", waiting for: ""meta.count-boundary (count boundary fixup)"" 2018/02/08 18:32:56 [TRACE] dag/walk: vertex ""provider.azurerm (close)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" 2018/02/08 18:32:56 [TRACE] dag/walk: vertex ""meta.count-boundary (count boundary fixup)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" 2018/02/08 18:33:01 [TRACE] dag/walk: vertex ""provider.azurerm (close)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" 2018/02/08 18:33:01 [TRACE] dag/walk: vertex ""root"", waiting for: ""meta.count-boundary (count boundary fixup)"" 2018/02/08 18:33:01 [TRACE] dag/walk: vertex ""meta.count-boundary (count boundary fixup)"", waiting for: ""azurerm_managed_disk.spark_agent_managed_disk[1] (destroy)"" azurerm_managed_disk.spark_agent_managed_disk.1: Still destroying... (ID: /subscriptions/de81f8e5-ae2f-43d7-ba87-...sks/sg-prod-north-europe-spark-agent-2, 1h0m0s elapsed) 2018/02/08 18:33:04 [TRACE] root: eval: *terraform.EvalWriteState 2018/02/08 18:33:04 [TRACE] root: eval: *terraform.EvalApplyPost 2018/02/08 18:33:04 [ERROR] root: eval: *terraform.EvalApplyPost, err: 1 error(s) occurred: * azurerm_managed_disk.spark_agent_managed_disk.1: azure#WaitForCompletion: context has been cancelled: StatusCode=204 -- Original Error: context deadline exceeded 2018/02/08 18:33:04 [ERROR] root: eval: *terraform.EvalSequence, err: 1 error(s) occurred: * azurerm_managed_disk.spark_agent_managed_disk.1: azure#WaitForCompletion: context has been cancelled: StatusCode=204 -- Original Error: context deadline exceeded 2018/02/08 18:33:04 [ERROR] root: eval: *terraform.EvalOpFilter, err: 1 error(s) occurred: * azurerm_managed_disk.spark_agent_managed_disk.1: azure#WaitForCompletion: context has been cancelled: StatusCode=204 -- Original Error: context deadline exceeded 2018/02/08 18:33:04 [TRACE] [walkApply] Exiting eval tree: azurerm_managed_disk.spark_agent_managed_disk[1] (destroy) 2018/02/08 18:33:04 [TRACE] dag/walk: upstream errored, not walking ""provider.azurerm (close)"" 2018/02/08 18:33:04 [TRACE] dag/walk: upstream errored, not walking ""meta.count-boundary (count boundary fixup)"" 2018/02/08 18:33:04 [TRACE] dag/walk: upstream errored, not walking ""root"" 2018/02/08 18:33:04 [TRACE] Preserving existing state lineage ""56449d11-2b8c-4df9-bddc-bc480c9f78ca"" 2018/02/08 18:33:04 [TRACE] Preserving existing state lineage ""56449d11-2b8c-4df9-bddc-bc480c9f78ca"" 2018/02/08 18:33:04 [TRACE] Preserving existing state lineage ""56449d11-2b8c-4df9-bddc-bc480c9f78ca"" 2018/02/08 18:33:04 [DEBUG] plugin: waiting for all plugin processes to complete... Error: Error applying plan: 1 error(s) occurred: * azurerm_managed_disk.spark_agent_managed_disk[1] (destroy): 1 error(s) occurred: * azurerm_managed_disk.spark_agent_managed_disk.1: azure#WaitForCompletion: context has been cancelled: StatusCode=204 -- Original Error: context deadline exceeded Terraform does not automatically rollback in the face of errors. Instead, your Terraform state file has been partially updated with any resources that successfully completed. Please address the error above and apply again to incrementally change your infrastructure. 2018-02-08T18:33:04.465Z [DEBUG] plugin.terraform: remote-exec-provisioner (internal) 2018/02/08 18:33:04 [DEBUG] plugin: waiting for all plugin processes to complete... 2018-02-08T18:33:04.465Z [DEBUG] plugin.terraform: file-provisioner (internal) 2018/02/08 18:33:04 [DEBUG] plugin: waiting for all plugin processes to complete... 2018-02-08T18:33:04.465Z [DEBUG] plugin: plugin process exited: path=/home/sg-prod/terraform-dcos/azure/.terraform/plugins/linux_amd64/terraform-provider-null_v1.0.0_x4 2018-02-08T18:33:04.465Z [DEBUG] plugin: plugin process exited: path=/home/sg-prod/terraform-dcos/azure/.terraform/plugins/linux_amd64/terraform-provider-azurerm_v1.1.0_x4 2018-02-08T18:33:04.465Z [DEBUG] plugin: plugin process exited: path=/home/sg-prod/terraform-dcos/azure/.terraform/plugins/linux_amd64/terraform-provider-random_v1.1.0_x4 2018-02-08T18:33:04.466Z [DEBUG] plugin: plugin process exited: path=/home/sg-prod/terraform-dcos/azure/.terraform/plugins/linux_amd64/terraform-provider-template_v1.0.0_x4 2018-02-08T18:33:04.466Z [DEBUG] plugin: plugin process exited: path=/usr/bin/terraform 2018-02-08T18:33:04.466Z [DEBUG] plugin: plugin process exited: path=/usr/bin/terraform 2018-02-08T18:33:04.466Z [DEBUG] plugin: plugin process exited: path=/home/sg-prod/terraform-dcos/azure/.terraform/plugins/linux_amd64/terraform-provider-external_v1.0.0_x4 ``` ### Expected Behavior <!-- What should have happened? --> ### Actual Behavior <!-- What actually happened? --> ### Steps to Reproduce * Clone https://github.com/dcos/terraform-dcos * `cd azure` * Create such a `terraform.tfvars` file: ``` cluster_name = ""tf"" state = ""install"" dcos_version = ""1.10.2"" ssh_pub_key = ""ssh-rsa ..."" os = ""centos_7.3"" azure_region = ""North Europe"" owner = ""sg"" azure_admin_username = ""sg-prod"" azure_master_instance_type = ""Standard_D2_v3"" azure_agent_instance_type = ""Standard_D11_v2_Promo"" azure_public_agent_instance_type = ""Standard_F2"" azure_bootstrap_instance_type = ""Standard_D1_v2"" num_of_masters = ""3"" num_of_public_agents = ""2"" num_of_private_agents = ""1"" instance_disk_size = ""128"" dcos_oauth_enabled = ""false"" ssh_port = ""2200"" dcos_process_timeout = ""600"" dcos_telemetry_enabled = ""false"" dcos_overlay_enable = ""true"" dcos_use_proxy = ""false"" dcos_check_time = ""true"" dcos_docker_remove_delay = """" dcos_audit_logging = ""true"" dcos_enable_docker_gc = ""true"" ``` * `terraform apply` * Update `num_of_public_agents = ""2""` to `num_of_public_agents = 1""` * `terraform apply` ### Additional Context Nothing is atypical as far as I know. I'm running Terraform on new Centos 7.4 machines. " "__label__enhancement Dividir los chunks por cuadrantes para la detección de colisiones Se me ocurrió ayer, leyendo en wikipedia sobre entidades, que podríamos divividir de forma lógica (no necesariamente en los json, digo) al chunk en cuatro (o más) listas de mobs/props, de acuerdo a la posición de cada uno. Un mob iría cambiando de lista a medida que se fuera moviendo de cuadrante, y sólo haría detección de colisiones con otros objetos dentro de su cuadrante, de manera de agilizar esa detección. Qué te parece? " __label__bug StrictHttpFirewall in 4.2.4 is documented as being since 5.0.1 https://github.com/spring-projects/spring-security/blob/f81b58112b372c48b94e9b0260ecee0853d94243/web/src/main/java/org/springframework/security/web/firewall/StrictHttpFirewall.java#L33 "__label__enhancement Better / more efficient handling of oscillations Oscillations in the warp during the updates can be handled much better by using semantic flags, i.e. if the oscillation results in the voxel landing within the termination threshold in the course of two iterations, it should be left alone and untouched." "__label__enhancement Ignore all top-level document properties that start with an underscore Sync Gateway prohibits the use of top-level document key names that start with an underscore because it reserves the right to use them for internal properties. The synctos validation module whitelists `_id`, `_rev`, `_deleted`, `_revisions` and `_attachments` when they are at the top level of a candidate document since they are internal properties, but it should whitelist _all_ properties that start with an underscore at the top level of a candidate document to provide forward compatibility in case additional internal properties are introduced in the future." __label__bug 收数据问题 ## 环境 * 操作系统: 如Windows 10 * Anaconda版本: 如Anaconda 4.0.0 Python 2.7 32位 * vn.py版本: vn.py 1.7.2以及之前版本都有这个问题 ## Issue类型:Bug 收数据的时候,每天夜盘和日盘开始前都会重启程序,但是每天收盘后的最后一分钟数据没有合成,因为只有当下一条事件推送进来的时候才会把之前的数据合成保存到数据库中。也就是缺时用夜盘最后一分钟数据和日盘最后一分钟14:59的数据 ![Uploading collectdata2_q.jpg…]() __label__bug change installers "__label__enhancement Add ""Allowed Formats"" module https://www.drupal.org/project/allowed_formats" __label__bug illegal string offset once finished configuration wpsf give issues like this ## Warning: Illegal string offset 'errors' in D:\xampp\htdocs\projects\clarup\clarup-wp\wp-content\themes\clarup\inc\wpsf-framework\classes\settings.php on line 368 this issue was occured only at first time loaded ![Uploading image.png…]() __label__bug select+参照 点击参照按钮 默认把select的dropdown也展开了 __label__enhancement GET /users/:id/followings 指定したユーザーがフォローしているユーザーの一覧を取得 ### 項目と動作確認の状況 - [x] 基本的な実装 - [x] 動作確認 - [x] limit - [x] 動作確認 - [x] cursor - [x] 動作確認 "__label__enhancement Idea: More specific message for InvalidArrayOffset when offset is a printable int/string literal/constant ```php $params = ['key' => 'value']; echo $params['fieldName']; ``` Observed: `InvalidArrayOffset: Cannot access value on variable $params using string offset, expecting 'key'...` Desired: `InvalidArrayOffset: Cannot access value on variable $params using offset of 'fieldName', expecting 'key'...` " "__label__bug There's no way to know deployment state without output window open If I have the output window closed, I have no way to know my app is being deployed or if it succeeds. Here are some possible improvements: 1. Use `vscode.window.withProgress` (this displays in the status bar, which isn't that visible either. But it's better than nothing - and maybe we could file a bug on VSCode to make it more obvious) 1. Use `vscode.window.showErrorMessage` instead of displaying errors in the output window 1. Show '(Deploying...)' on the node itself (related to https://github.com/Microsoft/vscode-azureappservice/issues/78)" "__label__question FRAME_TYPE_JOIN_REQ power optimization random seed source I have a power optimization question. In LoraMac, when sending a Join Request a real random seed is taken from the Lora radio with radio.random(). Is this necessary if the pseudo random seed is already initialized with a real random number? The random functions are seeded during initialization in LoraMac. Taking a random seed from randr when sending a Join Request would save a lot of energy.... or do we have security problems afterwards? " "__label__enhancement Support interrupting tasks User Frédéric Meynadier suggested an interruption feature, where an open interval could be interrupted temporarily by a new interval. It might work like this: ``` $ timew start ORIGINAL_WORK ... $timew interrupt EMERGENCY_WORK ... $timew stop ... # ORIGINAL_WORK interval resumed ```" "__label__bug `EphemeraTerms` aren't properly serialized into JSON-LD for IIIF Manifests Discovered within #756, `EphemeraTerms` are not JSON-LD encodings of Objects which can be used as IIIF Manifest metadata entries: ``` { label: ""Genre"", value: [{ internal_resource: ""EphemeraTerm"", created_at: ""10/06/17 07:51:01 PM UTC"", updated_at: ""10/06/17 07:51:01 PM UTC"", read_groups: [], read_users: [], edit_users: [], edit_groups: [], id: { id: ""42754ac7-7723-4219-81eb-11085946fdca"" }, label: ""Pamphlets"", uri: ""http://id.loc.gov/vocabulary/graphicMaterials/tgm007415"", code: null, tgm_label: null, lcsh_label: null, member_of_vocabulary_id: [{ id: ""e7771cb0-e5a9-4ef7-b7ea-8e2f9b103302"" }], }], } ```" "__label__bug Icons in multiple-level tree view are not arranged correctly in 1.20 Insider <ul> <li>VSCode Version: Code - Insiders 1.20.0-insider (6bfe9bbe8a910b8c57bb0c0a6e0557d46ebd64ba, 2018-01-24T06:08:23.315Z)</li> <li>OS Version: Darwin x64 17.3.0</li> <li><details><summary>Extensions (3)</summary> Extension|Author (truncated)|Version ---|---|--- azure-account|ms-|0.3.0 azure-iot-edge|vsc|0.1.3 azure-iot-toolkit|vsc|0.5.0 </details></li> </ul> --- Steps to Reproduce: 1. Install an extension with multiple-level tree view such as [Azure IoT Toolkit](https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.azure-iot-toolkit) and [Docker](https://marketplace.visualstudio.com/items?itemName=PeterJausovec.vscode-docker) 2. Expand the secondary tree. Here is how the tree view looks like in 1.19, which is correct: ![image](https://user-images.githubusercontent.com/716650/35336754-5f0093e6-0154-11e8-9fa5-4547e16d13ba.png) The tree items named ""$edgeAgent"", ""$edgeHub"", ""filterModule"", and ""tempSensor"" are all sub-tree items of ""edgeDevice"". In 1.20.0 Insider, the icons for the secondary tree items are closer to the left than that for the first level, which is confusing: ![image](https://user-images.githubusercontent.com/716650/35336679-2209d678-0154-11e8-9dc3-6257a6a1d410.png) <!-- Launch with `code --disable-extensions` to check. --> Reproduces without extensions: N/A" __label__enhancement Add different kind of lines __label__enhancement html not work plz check it and enhance "__label__enhancement Set click listener only in spotlight hi there, i want to implement on click only on spotlight so i can say it cant cancellable on when user touch on black area. Is this feature already implemented? or is there any code to backup this logic? thank you" "__label__bug Excel document doesn't contain ListView.Items data When an xlsx file is written by the save option, it does not contain any data. It's empty. I need to investigate why it's not writing properly, I'll probably want to set up some small exception handling to show me what's going wrong and where." __label__enhancement Replace current news loading system with standard Android classes The news should be... - Updated using a Sync Adapter - Encapsulated in a private Content Provider - Accessed using a Loader that tracks when there are updates "__label__bug State group.present fails to create a new group on Windows ### Description of Issue/Question Asserting a group under Windows fails if the group does not exist. Manually altering `salt\states\group.py:249` directly to only pass 1 argument then causes the state to apply and the group to be created. ### Setup Install a salt-minion on Windows and authorise key as usual. top.sls: ``` base: '*': group1 ``` group1.sls: ``` newgroup1: group.present: [] ``` ### Steps to Reproduce Issue The error reported on the master from `salt win-test state.apply` is as follows: ``` ID: newgroup1 Function: group.present Result: False Comment: An exception occurred in this state: Traceback (most recent call last): File ""c:\salt\bin\lib\site-packages\salt\state.py"", line 1843, in call **cdata['kwargs']) File ""c:\salt\bin\lib\site-packages\salt\loader.py"", line 1795, in wrapper return f(*args, **kwargs) File ""c:\salt\bin\lib\site-packages\salt\states\group.py"", line 249, in present system=system): TypeError: add() takes exactly 1 argument (3 given) Started: 15:01:29.693000 Duration: 110.0 ms Changes: ``` ### Versions Report ``` Salt Version: Salt: 2017.7.2 Dependency Versions: cffi: 1.10.0 cherrypy: 10.2.1 dateutil: 2.6.0 docker-py: Not Installed gitdb: 2.0.3 gitpython: 2.1.3 ioflo: Not Installed Jinja2: 2.9.6 libgit2: Not Installed libnacl: Not Installed M2Crypto: Not Installed Mako: 1.0.6 msgpack-pure: Not Installed msgpack-python: 0.4.8 mysql-python: Not Installed pycparser: 2.17 pycrypto: 2.6.1 pycryptodome: Not Installed pygit2: Not Installed Python: 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:53:40) [MSC v.1500 64 bit (AMD64)] python-gnupg: 0.4.0 PyYAML: 3.11 PyZMQ: 16.0.2 RAET: Not Installed smmap: 2.0.3 timelib: 0.2.4 Tornado: 4.5.1 ZMQ: 4.1.6 System Versions: dist: locale: cp1252 machine: AMD64 release: 2016Server system: Windows version: 2016Server 10.0.14393 Multiprocessor Free ``` " "__label__bug Error while clicking through cast members. Version: 2.9.7 Build: 2017-12-28 20:10 OS: Windows 10 10.0 JDK: 1.8.0_151 x86 Oracle Corporation __What is the actual behaviour?__ while clicking through the cast members an error pops up after about 8 selections __What is the expected behaviour?__ just to display the current selections image __Steps to reproduce:__ enter cast tab, click a name, click another name... after about 8 selections it comes up with an error. This is not a regular amount of clicks [tmm_logs.zip](https://github.com/tinyMediaManager/tinyMediaManager/files/1624086/tmm_logs.zip) __Additional__ Have you attached the logfile from the day it happened?" "__label__bug tag project files created with TurtleStitch Tag project files creator app with 'TurtleStitch 2.0, http://www.turtlestitch.org';" "__label__bug Stack bytes sometimes invisible in debugger On some display configurations, such as my 4K monitor with 150% UI scaling, the stack bytes become unreadable in the debugger, being cut off. ![image](https://user-images.githubusercontent.com/8469545/35198322-f30113dc-fea1-11e7-8b38-1d2f72faaf88.png) " "__label__bug Edge 16 styling For Edge 16, the positioning of the down arrow is off for the language selector, but it seems to be fine everywhere else on select inputs: <img width=""115"" alt=""screen shot 2018-02-06 at 8 24 49 am"" src=""https://user-images.githubusercontent.com/8291663/35864812-798349f2-0b18-11e8-985c-372b0d5dd9c7.png""> Also, not sure this is even worth fixing, but figured I'd bring up that Edge seems to have its own native clear search icon: <img width=""546"" alt=""screen shot 2018-02-06 at 8 27 44 am"" src=""https://user-images.githubusercontent.com/8291663/35864842-8f08a6f0-0b18-11e8-868d-e919f68bdc33.png""> " "__label__bug Beta site won't load starting today Suddenly I am getting the error below when loading the beta site. The standard release site works fine still. Still present as of 4.37.0.1803 > > Bungie.net Error > Bungie's services currently have a bug that prevents DIM from loading info for your Destiny 2 account if you played Destiny 1 on a last-gen console. Bungie will fix this soon, but until then you must play Destiny 1 on a current-gen console to be able to access your info." __label__enhancement Also open features in a new tab when middle-clicking them "__label__enhancement Add nested properties support for `belongsTo` associations Currently, you can only set nested properties on `hasOne` and `hasMany` associations. If you want to have nested properties-like functionality on `belongsTo` data, you need to write callback logic manually to handle it. :( " "__label__bug DataStoreExportError: Could not export hmaps in npz for Canada In calculations with GSIMs stored as .hdf5 files the extract API does not work with this error: ```python File ""/opt/openquake2/oq-engine/openquake/calculators/getters.py"", line 43, in __init__ self.rlzs_assoc = rlzs_assoc or dstore['csm_info'].get_rlzs_assoc() File ""/opt/openquake2/oq-engine/openquake/baselib/datastore.py"", line 395, in __getitem__ val = self.parent[key] File ""/opt/openquake2/oq-engine/openquake/baselib/datastore.py"", line 390, in __getitem__ val = self.hdf5[key] File ""/opt/openquake2/oq-engine/openquake/baselib/hdf5.py"", line 315, in __getitem__ obj.__fromh5__(h5obj, h5attrs) File ""/opt/openquake2/oq-engine/openquake/commonlib/source.py"", line 461, in __fromh5__ self.gsim_lt = logictree.GsimLogicTree(self.gsim_fname, trts) File ""/opt/openquake2/oq-engine/openquake/commonlib/logictree.py"", line 1140, in __init__ self._ltnode = ltnode or node_from_xml(fname).logicTree File ""/opt/openquake2/oq-engine/openquake/baselib/node.py"", line 692, in node_from_xml root = parse(xmlfile).getroot() File ""/opt/openquake2/oq-engine/openquake/baselib/node.py"", line 350, in parse return ElementTree.parse(source, SourceLineParser(), **kw) File ""/opt/python35/lib/python3.5/xml/etree/ElementTree.py"", line 1195, in parse tree.parse(source, parser) File ""/opt/python35/lib/python3.5/xml/etree/ElementTree.py"", line 585, in parse source = open(source, ""rb"") [Errno 2] No such file or directory: '/home/michele/Canada/hdf_gmpe_logic_tree.xml' ``` The solution is to set correctly the GMPE_DIR when reading the logic tree from the datastore." "__label__bug The token T_CS[\@ifpackagelater] is not defined 1. I have a TeX file which does `\usepackage{tablefootnote}`. 2. I found `tablefootnote.sty` [here](https://svn.vu.nl/repos/article_TCC/tablefootnote.sty). 3. I tried to transform the document with `--includestyles` flag (and LaTeXML built from the latest commit to master at the moment, because it contains the fix to make `includestyles` work) 4. I see (not only) an error: `Error:undefined:\@ifpackagelater The token T_CS[\@ifpackagelater] is not defined.` How can I workaround that?" "__label__enhancement Suggestion: Be able to list the songs in a playlist and delete certain ones [download]: https://github.com/jagrosh/MusicBot/releases/latest [release]: https://img.shields.io/github/release/jagrosh/MusicBot.svg [setup]: https://github.com/jagrosh/MusicBot/wiki/Setup [rpi]: https://github.com/jagrosh/MusicBot/wiki/JMusicBot-on-Raspberry-Pi [features]: https://github.com/jagrosh/MusicBot/projects/1 ## General Troubleshooting Please check off these steps before suggesting a feature or reporting a bug: - [x] I am running the [latest version][download]: [![Release][release]][download] - [x] I have followed all instructions on the [setup page][setup] (and if applicable, [Raspberry Pi][rpi]) - [x] I have read through the [planned and suggested features][features] ## Issue Suggestion: Be able to list the songs in a playlist and delete certain ones ### Issue Type - [ ] Bug Report - [x] Feature Request ### Description I use the bot's playlist feature a lot, and it's annoying to have to go into nano to see and edit the songs in a playlist. A way to see the songs and remove certain ones from Discord would be appreciated :) " "__label__enhancement UI issue when enabling self-hosted registry After clicking the `Enable Self Hosted Registry` button, the following error message appears in the console: ![error](https://user-images.githubusercontent.com/9009792/35146407-c81ff85e-fd02-11e7-9222-a080b80c35ab.png) Furthermore, the `Root Domain` field is now blank and the `Enable Self Hosted Registry` button is still clickable. To the user, therefore, it looks like there has been a problem. They may try to click on the `Enable Self Hosted Registry` button again. However, if you log out and then straight back in again, in fact all is OK... the `Root Domain` field is now correct and the `Enable Self Hosted Registry` button is now non-clickable. Perhaps the feedback to the user can be improved so as not to give the impression that there is a problem? Similar for the auth token error I describe at the end of [this post](https://github.com/githubsaturn/captainduckduck/issues/136#issue-289726217)... creates the impression that a disaster has occurred when in fact it hasn't. " "__label__enhancement Quebra de layout no texto do campo ""Situação"" **Procedimento:** Menu superior >> Usuários >> Convidar usuário >> Preencher os campos de cadastro >> Enviar convite. **Erro:** Ocorre quebra de layout no texto do campo ""Situção"". ![image](https://user-images.githubusercontent.com/30694914/32780178-7feae26a-c927-11e7-9967-8d527efd8d0f.png) **Sugestão:** Reduzir o espaçamento entre os campos ""CPF"" e ""Tipo de Conta"". Exemplo: ![image](https://user-images.githubusercontent.com/30694914/32780488-89ae22ac-c928-11e7-8826-da69cfd77f4e.png) " __label__bug Playlist creation bad behavior If you spam the button in the modal create library you can create multiple empty playlists. Like this: ![image](https://user-images.githubusercontent.com/10008695/35776692-86ac8580-09a1-11e8-8b55-af0f6a2bc6f8.png) Also only one playlist appears after this in the web page: ![image](https://user-images.githubusercontent.com/10008695/35776695-9fff158e-09a1-11e8-8ea4-562d9e39e4d5.png) After refreshing the UI all the playlists are displayed: ![image](https://user-images.githubusercontent.com/10008695/35776701-b2017b14-09a1-11e8-95a0-41b6bc22d6c3.png) "__label__bug Messages never arrived unless wifi or data connection is changed ### Expected behavior Message should not take very long to arrive to the destination ### Actual behavior Messages seem to never arrive unless I change to another wifi network or both ways from wifi to data ### Steps to reproduce 1. Send a message a clock is shown but it's never send 2. Some one send me a message, it never arrives 3. Connecting to a different wifi or from wifi to data or vice versa sends and receives messages ### Environment Kontalk version: 4.1.2 (280) Both from F-Droid and Google Play Android version: Both from Replicant 6.0 (Android 6.0.1) and LineogeOS lineage-14.1 (Android 7.1.2) Device model: i9100 witch is the one that has Replicant and i9300 with LineogeOS ### Long Description My girlfriend and I are using kontalk from LineogeOS and Replicant respectively, but both phone seem to have the same problem. For instance, my girlfriend is connected to a wifi network, tries to send a message to me, but the message never seems to get out. A little clock is shown, but even after waiting a couple a minutes the clock is still present. Same wise, when I send her a message she some times never receives it. In the other hand she can send and receive messages from whatsapp while this is happening. I don't seem to find a way to tell weather or not kontalk has a connection or not, the only way I can tell that it has trouble with the connection is that the ""last connected"" on the contact title you are trying to reach is never display. This happens the same when using data. The weird part is that I was having similar issues a few days ago but it seem it got better while her got the other way around and got worse. It seems bringing the application up from the background doesn't seem to help. The only way to receive or send messages when they are stuck is to switch from one wifi to another, disable and enable data, or switching from data to wifi and vice versa. Would a log show what is kontalk doing in this situations where the messages are stuck? should I just use an app like cat log and send the log this display in those moments? Something I notice is that in my kontalk installation which I installed from f-droid, I can't enable ""Push notification"" because it says ""Push notification support was not included in this version"". While hers from google play was enabled by default. I tried disable it on her phone and use the ""Reconnect to server"" option to the minimum 5 min in both phones hoping it would help but it hasn't. Thank you for your help. I hope something can be done. For a while I thought that it could be a problem with kontlak's server maybe? I live in Mexico, I'm not sure if distant is an issue. Anyway thanks a lot." "__label__bug Calling Log.CloseAndFlush result in NullReferenceException I'm using ASP.NET Core 2.0 I'm trying to use the ApplicationInsights sink by calling `.WriteTo.ApplicationInsights(_configuration[""ApplicationInsights:InstrumentationKey""], ConvertLogEventsToCustomTraceTelemetry)` as specified on the README The log then work just fine, telemetry was sent to application insight. But when the web server is shutting down, I'm calling `Log.CloseAndFlush` ```csharp try { Log.Information(""Starting web host""); var host = BuildWebHost(args); host.Run(); return 0; } catch (Exception ex) { Log.Fatal(ex, ""Host terminated unexpectedly""); return 1; } finally { Log.CloseAndFlush(); } ``` The line calling `Log.CloseAndFlush()` will then throw a NullReferenceException Stack trace below ``` Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. at Serilog.Sinks.ApplicationInsights.ApplicationInsightsSinkBase.Dispose(Boolean disposeManagedResources) at Serilog.Sinks.ApplicationInsights.ApplicationInsightsSinkBase.Dispose() at Serilog.LoggerConfiguration.<CreateLogger>b__28_0() at VDMS.Program.Main(String[] args) in C:\Repos\WebApp\Program.cs:line 50 ``` I was wondering if I'm doing this the wrong way ?" "__label__bug Generated .sln should include a BOM for the Microsoft Visual Studio Version Selector to work The *Microsoft Visual Studio Version Selector* used to open .sln files with the correct Visual Studio version doesn't work if the .sln files is encoded as simple UTF-8 without the BOM. See this SO answer for reference: https://stackoverflow.com/questions/2804759/vslauncher-starts-wrong-version/2829550#2829550 I have tested it myself just right now, with a fresh install of Visual Studio 2017, and having Visual Studio 2015 still installed on my PC: now double-clicking the VS2015 .sln files generated by FastBuild opens it with VS2017. Then, manually saving the .sln with encoding UTF-8 with BOM restores the expected and working behavior (assuming the default file opener for .sln is the VS Selector): it opens with VS2015, and as an added bonus the file has a VS14 icon in the Windows Explorer." __label__enhancement Add option to prefill values in browser E.g. using the `mechanize` module "__label__enhancement Create an SDK for Spark and for General Compute for Thingsboard communication There needs to be an SDK created for Java and Scala for Spark and general compute (i.e. docker hosted). This SDK should be mavenized and documented. This SDK should wrap: The MQTT transmission of results back to thingsboard (including the api key and the gateway token), the Kafka client that will subscribe and receive the data." "__label__bug Tooltip Helper in iToS Hi Toukibi, your newest release of Tooltip Helper doesnt show drop ratio anymore. I hope you could spend some time to check it Thank you very much for all those great add-ons ![1695fd36394487e39b41910619a897d847cd44d1_1_413x500](https://user-images.githubusercontent.com/36026174/35665442-cb56369a-0758-11e8-8130-6a223509c456.png) ![6b86e0998f20964dbd9bffef5656f7935f8ebf9d](https://user-images.githubusercontent.com/36026174/35665355-81895ad8-0758-11e8-98dc-92bd5ef7045b.png) " __label__bug Calling 'depends_on :foo' is deprecated! ``` brew tap brewsci/science 2>&1 | grep Calling | sort | uniq -c 12 Calling 'depends_on ... => :perl' is deprecated! 3 Calling 'depends_on ... => :python' is deprecated! 2 Calling 'depends_on :ant' is deprecated! 1 Calling 'depends_on :emacs' is deprecated! 39 Calling 'depends_on :fortran' is deprecated! 27 Calling 'depends_on :mpi' is deprecated! 2 Calling 'depends_on :mysql' is deprecated! 1 Calling 'depends_on :perl' is deprecated! 1 Calling 'depends_on :postgresql' is deprecated! 15 Calling 'depends_on :python' is deprecated! 13 Calling 'depends_on :python3' is deprecated! 1 Calling 'depends_on :ruby' is deprecated! 1 Calling 'depends_on :tex' is deprecated! 5 Calling <<-EOS.undent is deprecated! ``` __label__enhancement Expose notification status __label__bug [TW-45] task recur:daily doesn't behave as expected _Nick Person says:_ task recur: makes shows tasks that don't recur but task recur:daily (and variants) don't show anything __label__enhancement Homelessness We filmed and interviewed two sets of individuals that were previously homeless and have since been placed in a homes. Footage has been stored on to hard drives. Assembly edits will happen today... cut the stories this week...and deliver a draft. __label__enhancement progressive load of transaction logs "__label__enhancement Add filtering method - add filtering (high pass and low pass) - see nltools.data.Brain_Data example - add detrending - (linear, quadratic, cubic) - see nltools.data.Brain_Data example detrending could be useful if we see huge baseline shifts which could indicate baseline face location change (this sometimes happens for our head-mounted cameras where the helmet might shift in position) " __label__bug Separate grid view from normal view when dragging categories [Source](https://www.steamgifts.com/go/comment/ijGAl3V) __label__bug Something is broken (test) "__label__bug Footer and header margins does not sets to 0 Unable to set margin with worksheet_set_header_opt (or worksheet_set_footer_opt) to 0, it sets to default. May be a good way is to changes this methods for using -1 as default (like in worksheet_set_margins) and 0 as working value? Thanks" __label__enhancement implement incoming payments dialog __label__enhancement Be able to swipe to complete and swipe to delete "__label__enhancement [TW-97] Project Tags _Christian Staudt says:_ Tags should be assignable to projects, in such a way that new tasks added to the projects automatically receive the project tags. For example: I use tags like ""+work"" and ""+home"" to broadly categorize tasks and projects. I mostly apply tagging on the project scale: <pre> task proj:SomeProjectAtWork append +work </pre> However, I have to execute this command more than once, because new tasks added to the project do not receive the tag. An alternative for hierarchical categorization of projects would be to use subprojects, like <pre> proj:work.SomeProjectAtWork </pre> However, this would not allow the same flexibility as project tags. See this forum thread for a discussion on the issue: http://taskwarrior.org/boards/1/topics/2670" "__label__bug About error messages in 'for-pairs' (for-pairs vars tbl &body) Macro defined at lib/core/base.lisp:352:2 It seems like the existance if the 'tbl' element is not properly checked. It should fail if a variable that should represent 'tbl' is missing. Instead there is a bad argument error. In the repl this works: ~~~~~~~~~~~~~ urn > (for-pairs (k v ) gg (print! k)) [ERROR] Cannot find variable 'gg' => <stdin>:[1:19 .. 1:20] 1 │ (for-pairs (k v ) gg (print! k) ~~~~~~~~~~~~~ But not in the script. ~~~~~~~~~~~~~~~~~~~~~~~~~ cat test.urn (define xx (lambda (ll) (let ((res ll) (mystruct (struct-literal :foo 123))) (for-pairs (k v) struct (push! res (list k v)) res)))) (xx (list)) Error: lua: out.lua:92: bad argument #1 to 'next1' (table expected, got function) stack traceback: [C]: in function 'next1' out.lua:92: in function <out.lua:90> (...tail calls...) [C]: in ?" __label__enhancement Add tool to convert the old PunchCard format to TOML I think the title explains it all. "__label__bug How to close a case via API It may be obvious, but how do I close an existing case via thehive4py (v 1.4.2) please? I tried to update a case with the following fields without success: ```python api = TheHiveApi(....) hiveCase = api.case(caseId) hiveCase.status='Resolved' hiveCase.resolutionStatus='TruePositive' hiveCase.impactStatus='NoImpact' hiveCase.summary='closed by api' hiveCase.tags=['test'] hiveResponse = api.update_case(hiveCase) if hiveResponse.status_code == 200: logging.warning(json.dumps(hiveResponse.json(), indent=4, sort_keys=True)) else: logging.warning('ko: {}/{}'.format(hiveResponse.status_code, hiveResponse.text)) ``` Thanks in advance" "__label__bug Missplaced logging Running the `segment_wiki.py` scripts prints: ```bash $ time python -m gensim.scripts.segment_wiki -f /data_hdd/wiki/enwiki-latest-pages-articles.xml.bz2 -o /data_hdd/wiki/enwiki-latest.json.gz No handlers could be found for logger ""gensim.models.doc2vec"" 2017-11-10 22:21:25,334 : MainProcess : INFO : running /home/radim/workspace/gensim/gensim/scripts/segment_wiki.py -f /data_hdd/wiki/enwiki-latest-pages-articles.xml.bz2 -o /data_hdd/wiki/enwiki-latest.json.gz 2017-11-10 22:24:40,174 : MainProcess : INFO : Processed #100000 articles ``` which is a bug. The doc2vec module should not log anything on import -- it should behave the same as word2vec, or any other gensim module." __label__bug TagNavContainer displays a setState(...) warning in browser console ### Expected behavior - No react warning should show in the browser console ### Actual behavior - setState(..) warning shows in console ### Steps to reproduce the behavior - While logged in as an admin go to a Product Detail Page and open the browser console - Toggle edit mode on and off to see the warnings in the browser conole ### Versions ```shell Node: 9.4.0 NPM: 5.6.0 Meteor Node: 8.9.3 Meteor NPM: 5.5.1 Reaction CLI: 0.26.4 Reaction: 1.8.0 Reaction branch: release-1.8.0 ``` "__label__bug Fix deletion of evals from my evals page Currently, the right eval is deleted on the back-end, but on the front-end the wrong one seems to be removed." __label__bug JIP Teleport doesn't work for JIPs __label__enhancement Document new tweet query feature See ManifoldScholar/manifold#672 __label__enhancement Implement TPM_CC_PolicyTemplate This command was added in v1.38 of the TPM spec. See list of command codes in table 12 here: https://trustedcomputinggroup.org/wp-content/uploads/TPM-Rev-2.0-Part-2-Structures-01.38.pdf "__label__bug Backdrop area is cut off ## Steps to reproduce Change minimum font size preference in settings (minimum of 12 or 13 will repro) , then view at actual size - backdrop gets cut off. Everything looks fine after zooming in. ![Screen Shot 2017-10-11 at 2.17.47 PM.png](https://codetreeusercontent.s3.amazonaws.com/uploads/134c1e85-6424-4fdd-9c99-07ba30bc9c70/Screen+Shot+2017-10-11+at+2.17.47+PM.png) OSX Sierra 10.12.6 Chrome Version 61.0.3163.100 (Official Build) (64-bit) " "__label__question Could ""pip3 install salt"" break the existing salt installation? ### Description of Issue/Question I had a server and several minions running fine. Since I wanted to experience with the Python API, I installed the salt module (`pip3 install salt`). It look it broke all `salt` commands (I am not sure but this is the only change I can think of). Running `salt '*' test.ping` yields ``` [ERROR ] Exception occurred in Subscriber while handling stream: 'utf-8' codec can't decode byte 0x82 in position 22: invalid start byte [ERROR ] An un-handled exception was caught by salt's global exception handler: UnpackValueError: 'utf-8' codec can't decode byte 0x82 in position 22: invalid start byte Traceback (most recent call last): File ""msgpack/_unpacker.pyx"", line 499, in msgpack._unpacker.Unpacker._unpack UnicodeDecodeError: 'utf-8' codec can't decode byte 0x82 in position 22: invalid start byte During handling of the above exception, another exception occurred: Traceback (most recent call last): File ""/usr/local/bin/salt"", line 11, in <module> sys.exit(salt_main()) File ""/usr/local/lib/python3.5/dist-packages/salt/scripts.py"", line 476, in salt_main client.run() File ""/usr/local/lib/python3.5/dist-packages/salt/cli/salt.py"", line 173, in run for full_ret in cmd_func(**kwargs): File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 806, in cmd_cli **kwargs): File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 1589, in get_cli_event_returns **kwargs File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 1174, in get_iter_returns for raw in ret_iter: File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 1099, in get_returns_no_block no_block=True, auto_reconnect=self.auto_reconnect) File ""/usr/local/lib/python3.5/dist-packages/salt/utils/event.py"", line 632, in get_event ret = self._get_event(wait, tag, match_func, no_block) File ""/usr/local/lib/python3.5/dist-packages/salt/utils/event.py"", line 540, in _get_event raw = self.subscriber.read_sync(timeout=wait) File ""/usr/local/lib/python3.5/dist-packages/salt/transport/ipc.py"", line 705, in read_sync return ret_future.result() File ""/usr/local/lib/python3.5/dist-packages/tornado/concurrent.py"", line 238, in result raise_exc_info(self._exc_info) File ""<string>"", line 4, in raise_exc_info File ""/usr/local/lib/python3.5/dist-packages/tornado/gen.py"", line 1069, in run yielded = self.gen.send(value) File ""/usr/local/lib/python3.5/dist-packages/salt/transport/ipc.py"", line 681, in _read_sync raise exc_to_raise # pylint: disable=E0702 File ""/usr/local/lib/python3.5/dist-packages/salt/transport/ipc.py"", line 653, in _read_sync for framed_msg in self.unpacker: File ""msgpack/_unpacker.pyx"", line 574, in msgpack._unpacker.Unpacker.__next__ File ""msgpack/_unpacker.pyx"", line 519, in msgpack._unpacker.Unpacker._unpack msgpack.exceptions.UnpackValueError: 'utf-8' codec can't decode byte 0x82 in position 22: invalid start byte Traceback (most recent call last): File ""msgpack/_unpacker.pyx"", line 499, in msgpack._unpacker.Unpacker._unpack UnicodeDecodeError: 'utf-8' codec can't decode byte 0x82 in position 22: invalid start byte During handling of the above exception, another exception occurred: Traceback (most recent call last): File ""/usr/local/bin/salt"", line 11, in <module> sys.exit(salt_main()) File ""/usr/local/lib/python3.5/dist-packages/salt/scripts.py"", line 476, in salt_main client.run() File ""/usr/local/lib/python3.5/dist-packages/salt/cli/salt.py"", line 173, in run for full_ret in cmd_func(**kwargs): File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 806, in cmd_cli **kwargs): File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 1589, in get_cli_event_returns **kwargs File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 1174, in get_iter_returns for raw in ret_iter: File ""/usr/local/lib/python3.5/dist-packages/salt/client/__init__.py"", line 1099, in get_returns_no_block no_block=True, auto_reconnect=self.auto_reconnect) File ""/usr/local/lib/python3.5/dist-packages/salt/utils/event.py"", line 632, in get_event ret = self._get_event(wait, tag, match_func, no_block) File ""/usr/local/lib/python3.5/dist-packages/salt/utils/event.py"", line 540, in _get_event raw = self.subscriber.read_sync(timeout=wait) File ""/usr/local/lib/python3.5/dist-packages/salt/transport/ipc.py"", line 705, in read_sync return ret_future.result() File ""/usr/local/lib/python3.5/dist-packages/tornado/concurrent.py"", line 238, in result raise_exc_info(self._exc_info) File ""<string>"", line 4, in raise_exc_info File ""/usr/local/lib/python3.5/dist-packages/tornado/gen.py"", line 1069, in run yielded = self.gen.send(value) File ""/usr/local/lib/python3.5/dist-packages/salt/transport/ipc.py"", line 681, in _read_sync raise exc_to_raise # pylint: disable=E0702 File ""/usr/local/lib/python3.5/dist-packages/salt/transport/ipc.py"", line 653, in _read_sync for framed_msg in self.unpacker: File ""msgpack/_unpacker.pyx"", line 574, in msgpack._unpacker.Unpacker.__next__ File ""msgpack/_unpacker.pyx"", line 519, in msgpack._unpacker.Unpacker._unpack msgpack.exceptions.UnpackValueError: 'utf-8' codec can't decode byte 0x82 in position 22: invalid start byte ``` `salt-run` commands are OK (for instance `salt-run manage.present` outputs the connected minions) ### Versions Report ``` # salt --versions-report Salt Version: Salt: 2017.7.3 Dependency Versions: cffi: Not Installed cherrypy: Not Installed dateutil: 2.5.3 docker-py: Not Installed gitdb: Not Installed gitpython: Not Installed ioflo: Not Installed Jinja2: 2.9.4 libgit2: Not Installed libnacl: Not Installed M2Crypto: Not Installed Mako: Not Installed msgpack-pure: Not Installed msgpack-python: 0.5.2 mysql-python: Not Installed pycparser: Not Installed pycrypto: 2.6.1 pycryptodome: Not Installed pygit2: Not Installed Python: 3.5.3 (default, Jan 19 2017, 14:11:04) python-gnupg: Not Installed PyYAML: 3.12 PyZMQ: 16.0.4 RAET: Not Installed smmap: Not Installed timelib: Not Installed Tornado: 4.5.3 ZMQ: 4.1.6 System Versions: dist: debian 9.3 locale: UTF-8 machine: x86_64 release: 4.9.0-5-amd64 system: Linux version: debian 9.3 ``` " "__label__enhancement unexpected warning message. @scottwittenburg since your bg fix we now get this message: ```python import vcs bg=False canvas = vcs.init(geometry={""width"":1200, ""height"":800}, bg=bg) canvas.plot([1,2,3,4]) canvas.png(""warn"") ``` returns ``` /Users/doutriaux1/anaconda2/envs/nightly2/lib/python2.7/site-packages/vcs/VTKPlots.py:1274: UserWarning: You are saving to png of size different from the current canvas. It is recommended to set the windows size before plotting or at init time. This will lead to faster execution as well. e.g x=vcs.init(geometry=(1200,800)) #or x=vcs.init() x.geometry(1200,800) ``` with bg=True the message does not show " "__label__enhancement Docs We're nearing a stage where this is close to a 1.0.0 release, we should do some indepth docs for new users, along with more samples. " __label__enhancement A way to convert nullpadded Strings? Nullpadded strings are retrieved with all the dead weight. No combination of Datatype settings seems to do the conversion properly. Either A) I'm not doing something right. Means we haven't come up with an obvious enough way to do it right. B) Extra machinery is needed "__label__enhancement Handle getInitialUrl Handle initial URL. If initial URL === '/token/*', load token data, and set it as selectedToken in feed screen. If initial URL === '/send/*, pre fill transaction form with data from the URL" __label__enhancement Update gems "__label__enhancement [Feature request] Allow to configure a proxy in Tusky Hello, It would be marvelous if user could configure a proxy in the application. For example, that feature would allow users to make connections through Tor, or other services like that. Thank you for your time, and a big, big :+1: for Tusky as my preferred app for Mastodon :) Cheers, C." "__label__bug [studio] 2.5.x dependencies is referenced by returns the object itself ### Expected behavior Asking what objects contain a reference to object A should not result in a response that contains object A. ### Actual behavior https://www.useloom.com/share/0cd117d93aac41229a4986dad04d4467 ### Steps to reproduce the problem * create a page the contains a reference to an image * open the dependencies for the page * switch the drop-down to ""refers to this item"" * note the incorrect response ### Log/stack trace (use https://gist.github.com) ### Specs #### Version #### OS #### Browser " "__label__bug In safari on mac the waveform disappears when scrolling via the mouse wheel ### Wavesurfer.js version(s): 2.0.3 ### Browser version(s): Safari v11.0.1 on OSX v10.13.1 ### Use behaviour needed to reproduce the issue: Reproducible for me every time in Safari on macbook touchpad and mac mini magic trackpad. Create a waveform with the param `scrollParent: true` and scroll along the x axis using the ""mouse wheel"". If you scroll to the very end or back to the beginning the waveform will disappear and an error will log with further scrolling. The error occurs in `fillRect` due to the index being out of bounds (there not being an entry canvas at -1 or >=canvases.length). Safari has an elastic scroll when using the ""mouse wheel"" and allows for scrollX to be out of bounds. To fix drawer.js line 223 ```javascript getScrollX() { var maxScroll = this.params.scrollParent ? ~~( this.wrapper.scrollWidth * this.params.pixelRatio - this.getWidth() ) : this.getWidth(); return Math.min( maxScroll, Math.max( 0, Math.round(this.wrapper.scrollLeft * this.params.pixelRatio) ) ); } ``` Will create a PR." "__label__bug Do not finalize config Normal HTMLPurifier lets you edit the config like: ```php $config = HTMLPurifier_Config::createDefault(); $html_purifier_cache_dir = sys_get_temp_dir() . '/HTMLPurifier/DefinitionCache'; if (!is_dir($html_purifier_cache_dir)) { mkdir($html_purifier_cache_dir, 0770, TRUE); } $config->set('Cache.SerializerPath', $html_purifier_cache_dir); ``` Your change: https://github.com/xemlock/htmlpurifier-html5/blob/master/library/HTMLPurifier/HTML5Config.php#L32 Makes this throw an exception: ```php $config = HTMLPurifier_HTML5Config::createDefault(); $html_purifier_cache_dir = sys_get_temp_dir() . '/HTMLPurifier/DefinitionCache'; if (!is_dir($html_purifier_cache_dir)) { mkdir($html_purifier_cache_dir, 0770, TRUE); } $config->set('Cache.SerializerPath', $html_purifier_cache_dir); ``` `Cannot set directive after finalization invoked`" __label__bug Check broken & closed of ws_valve.ui not work "__label__enhancement Search box: make it sticky Make the “search” box stick to the top of the page on https://w3c.github.io/tr-pages/mockup1/ , so that it doesn't get lost after you scroll down (@tanyeah dixit)." __label__bug Player gets stuck on flat surface __label__bug App crasht wanneer code gewijzigd en TimetableFragment wordt geladen "__label__bug Documented name and IP address of one of the Joyent machines are inconsistent There's a discrepancy between the documented hostname and IP address of a Joyent machine in a number of places. 1. In https://github.com/AdoptOpenJDK/openjdk-infrastructure/blob/master/infrastructure.md, there's a machine called `build-joyent-x64-ubuntu-16-04-2` (16-04) whose IP address is listed as `37.153.108.194`. 1. In KeyBox, there's a system called `build-joyent-x64-ubuntu-16.04-2` (16.04) whose IP address is listed as `37.153.109.201`. Assuming these are actually both meant to be the same machine, there's clearly a discrepancy here. - I am __not__ able to ssh to `37.153.108.194`, and pinging that IP address fails too. - I __am__ able to ssh to `37.153.109.201`, though when I do so, it's hostname shows as `build-joyent-x64-ubuntu-16-04-2`. What are the correct hostname and IP address? I believe they should be `build-joyent-x64-ubuntu-16-04-2` and `37.153.109.201`. Fix the document (https://github.com/AdoptOpenJDK/openjdk-infrastructure/blob/master/infrastructure.md) and KeyBox. " "__label__question Arming Rejected I have checked that all the pre-arm checks are passed and I am able to arm through controller and QGroundControl. However, when I try to arm through DroneCore I get the error ""Arming failed: Command denied"" ``` Telemetry::Health check_health = device.telemetry().health(); bool calibration_required = false; if (!check_health.gyrometer_calibration_ok) { cout << ERROR_CONSOLE_TEXT << ""Gyro requires calibration."" << NORMAL_CONSOLE_TEXT << endl; calibration_required=true; } if (!check_health.accelerometer_calibration_ok) { cout << ERROR_CONSOLE_TEXT << ""Accelerometer requires calibration."" << NORMAL_CONSOLE_TEXT << endl; calibration_required=true; } if (!check_health.magnetometer_calibration_ok) { cout << ERROR_CONSOLE_TEXT << ""Magnetometer (compass) requires calibration."" << NORMAL_CONSOLE_TEXT << endl; calibration_required=true; } if (!check_health.level_calibration_ok) { cout << ERROR_CONSOLE_TEXT << ""Level calibration required."" << NORMAL_CONSOLE_TEXT << endl; calibration_required=true; } if (calibration_required) { return 1; } // Arm vehicle cout << ""Arming..."" << endl; const Action::Result arm_result = device.action().arm(); if (arm_result != Action::Result::SUCCESS) { cout << ERROR_CONSOLE_TEXT << ""Arming failed:"" << Action::result_str(arm_result) << NORMAL_CONSOLE_TEXT << endl; return 1; } sleep_for(seconds(3)); // Disarm vehicle cout << ""Disarming..."" << endl; const Action::Result disarm_result = device.action().disarm(); ``` This is abstract of the code I wrote just to get asynchronous updates for the flight mode and altitude for 3 seconds. The health checks passed as usual (did not perform GPS checks because flying indoors). What are the other causes of arming fail? Do I need to manually set the flight mode in the program before arming? I'm running the program through Jetson TX1 companion computer via USB connection. I have disabled the USB circuit breaker in QGroundControl but does it still check through the program?" "__label__bug Zip Funktionalität überprüfen und korrigieren Originally reported by: **Thorsten Kattanek (Bitbucket: [tkattanek](https://bitbucket.org/tkattanek), GitHub: Unknown)** ---------------------------------------- Im BroeserWidget wird von viele ZIP Files der Inhalt nicht angezeigt. Ausserdem diese Funktion in Datasette, Floppy und CRT Window konsequent einbauen. ---------------------------------------- - Bitbucket: https://bitbucket.org/tkattanek/emu64/issue/80 " "__label__bug Invoking 'dotnet restore' hangs during omnisharp startup ## Environment data `dotnet --info` output: ``` .NET Command Line Tools (1.0.0-preview2-002990) Product Information: Version: 1.0.0-preview2-002990 Commit SHA-1 hash: 54cd31b0b7 Runtime Environment: OS Name: Windows OS Version: 10.0.10586 OS Platform: Windows RID: win10-x64 ``` VS Code version: 1.2.1 C# Extension version: 1.1.6 ## Steps to reproduce 1. Clear nuget caches. 2. Download and open an ASP.NET Core application (example https://github.com/aspnet/MusicStore/archive/release.zip) 3. `Command Palette > Omnisharp: Select Project > (your project)` 4. Omnisharp begins to auto-restore project (log shows `[INFORMATION:OmniSharp.DotNet.Tools.PackagesRestoreTool] Begin restoring project`) 5. Before this is finished, do `Command Pallet > dotnet: Restore Packages` ## Expected behavior Should immediately show available projects to restore, or at least indicate a restore is currently underway. ## Actual behavior The next dialog box does not appear until OmniSharp has finished its initial restore on the project(s), which may be minutes later. Then the next command palatte option with available projects appears (`dotnet restore - (your project)`) " __label__bug Message preview text is not stripped 1. **What happens**: - Typing a message with `\n` new line characters will over flood the message preview. 2. **What was expected**: - The message text should be stripped from those special characters in the preview. 3. **How to reproduce**: 1. Send a message to a match with the new line character: `\n` 2. Look at the message preview 4. **Environment**: - Sailfish OS version: - Sailfish OS hardware: "__label__bug Contradicting working 'Restart' or 'Reload' After installing an extension (from visx) <img width=""1190"" alt=""screen shot 2018-01-30 at 11 51 04"" src=""https://user-images.githubusercontent.com/1794099/35562510-e46bb12e-05b3-11e8-942f-2c56f7b6b030.png"">" __label__bug [TW-1146] export of due-dates are surrounded by single-quotes which remain through import _John Florian on 2009-07-28T20:05:55Z says:_ The single-quotes remain around the due date upon import which results in those dates being misreported. __label__bug Intents not detected and app stuck in training I've created 90 trait/keyword intents through the HTTP API and added samples also through the API. I can see these intents and expressions through the console. None of the created intents are being detected and the app is constantly in training status. It's been 12 hours now that this is the issue. My appid is 5a689c72-23af-47e8-96e8-172f241f7a32 __label__enhancement Inch conversion slows down calculating In postprocessor inch conversion slows down the definition - Remove this feature? [Link to component](https://github.com/fellesverkstedet/Bark-beetle-parametric-toolpaths/blob/master/Bark%20beetle%20components/CNC%20milling%20PostProcessor.ghuser) __label__question Don't reinvent the wheel There is a perfectly good working project that covers everything this repo does: https://github.com/awslabs/ecr-cleanup-lambda maybe put this project to rest in favor of the other project? __label__bug Test Issue Test "__label__bug Setting request URL after adding query parameters will wipe existing parameters Swapping `request.Url = requestUrl; request.WithQueryParameter(""MyOtherParameter"", ""hello mars"");` With `request.WithQueryParameter(""MyOtherParameter"", ""hello mars""); request.Url = requestUrl;` Should give the same result" "__label__enhancement Store buildable properties by reference when possible [Raised by ori@fleaflicker.com on the FreeBuilder mailing list](https://groups.google.com/d/topic/freebuilder/POTHLto-NGk/discussion): > I may have overlooked it but it there doesn't appear to be a way to set a buildable property by reference -- it's always copied either via merge or buildPartial and merge (MergeBuilderMethod). > > Is there a reason setting by reference isn't supported? FreeBuilder types are immutable. > > Small example: > > ``` > @FreeBuilder > interface Team { ... } > > @FreeBuilder > interface Game { > Team away(); > Team home(); > } > ``` > >The builder for Game will copy each Team reference that is set even though the Team is an immutable value type. So a collection of games ends up with many copies of the same Team objects. And the answer is, no, there is no reason other than that the feature is not yet implemented. (I mean, technically there's nothing stopping people making mutable FreeBuilder types, but I think it's still a sensible optimization.)" __label__bug playerlist threw an error at more players Need to check and fix that. "__label__bug nanopolish phase-reads throws assertion error I am running nanopolish phase-reads on 20 different bam files (one for each chromosome, since it doesn't appear to run in parallel) and coming up with the same error on every one of them. ``` % nanopolish phase-reads --reads mouse/mouse.nanopolish.fasta --bam mouse/mouse.nanopolish.sorted.REF_chr13.bam --genome mouse/mm10.fa -t 2 mouse/mouse.chr13.sorted.vcf -vvvvvvvvvvv 2> mouse/mouse.chr13.sorted.vcf.log 1> mouse/mouse.chr13.sorted.vcf.sam Aborted (core dumped) % less mouse/mouse.chr13.sorted.vcf.log 942a0774-1d99-4bec-9df3-16e07929c0bd_Basecall_1D_template:1D_000:template chr13:3000000-3005379 0 4baf6a7a-9620-4363-8dfb-2b6ab7844b03_Basecall_1D_template:1D_000:template chr13:3020964-3021041 0 dcd9e405-d57e-4f4b-bfb9-7049aec9c9c3_Basecall_1D_template:1D_000:template chr13:3000000-3004270 0 4c6bf43b-bbb6-4a21-828a-ae7e818df047_Basecall_1D_template:1D_000:template chr13:3021002-3022047 0 cca0e152-a0b8-438d-9f87-4a1750945b05_Basecall_1D_template:1D_000:template chr13:3000000-3002479 0 7e0a4573-beb2-489f-8951-7c20832133fc_Basecall_1D_template:1D_000:template chr13:3021145-3036111 24 [...] 0f93b36f-cf25-448d-884f-5b87c3623501_Basecall_1D_template:1D_000:template chr13:3042449-3048919 8 e663cfa9-7bb0-4964-85a1-a5e918650c41_Basecall_1D_template:1D_000:template chr13:3066992-3082144 52 612c8072-fef6-4a77-bedd-78a593263861_Basecall_1D_template:1D_000:template chr13:3042649-3044821 0 51267762-b544-4502-99b9-53cb7fb73513_Basecall_1D_template:1D_000:template chr13:3067164-3067804 12 a698dbd6-052f-4cb6-9df0-22d2d01e0296_Basecall_1D_template:1D_000:template chr13:3042721-3043003 0 3b9d9322-1f6c-434f-a2fb-76a697e5b0ae_Basecall_1D_template:1D_000:template chr13:3067256-3081312 49 nanopolish: src/nanopolish_phase_reads.cpp:305: void phase_single_read(const Fast5Map&, const faidx_t*, const std::vector<Variant>&, samFile*, const bam_hdr_t*, const bam1_t*, size_t, int, int): Assertion `read_outseq[out_position] == v.ref_seq[0]' failed. ``` The output looks reasonable enough, except that the quality scores are a little unusual - I'm guessing this is intentional. ``` 3bf62b85-d124-4604-bb4b-d94f72f05e16_Basecall_1D_template:1D_000:template 2048 chr13 3034475 42 2674M * 0 0 TCATCTCAGCATCTGGCCACAAATGCCAATAGTGCTGAGGTTGAGATGTCCTGCTCCTTGAGCTGTTTCTCTTCTAGTTTTGGTTTTGTGCATAGCCAGCTGGTAGTTATTGCCCCCAAATTTTCTATCGGATGAGAGTCACATTTTCTTAGGGATTGTGGAGAACAAGTAAGTCTTGTGCCCCCATCCAGCCCATCTTTAAAAAATAAAAAGGGGAATTGTACCCTTCCCCCAGCCTTGAATAGGTTAAACAACCCTCCAAAGGTTTAACAACCTGGCTGGAGTTGGCACCTGGCCTCATCTCATTTGCGTTTTCCCACCTGAGCTTTGAGTAGTTGACAGCCTACTGAGCTTGCCTTGCAACTCAATCCCGCTAAAACAAAGGATGGGTCTGTAGGTTTTCTCTATATAAATCCAGAGCTGAAAATTAAACTTTGGGGTTTTTGTTTGTTTGTTTGGTTTGGTTTTGGTTTTGGTCTTGGTCTTGGTTTTGGTTTTGGTTTTGGTTTTTTTTTTTTTTTTTTTTTTTTGAGACAGGGTTTCTCTGTGTAGACCTGGCTGTCCTGGAATTCCCTCTGTAGACCACGCTGGCCTTGAACTCAGAAATTCACCTGCCTCTGACTCTTAAGTGCTGGGATTAAAGGTGTGTGCCACCTTGCCTGGCGAAAATTAAATTTTGAACCTTGATCAGAAATCTTTGTCTTCATTCTTCTCTTGCCCACCTGTCCTTTTTCATTCCCAGCTCCCCTTTCAGATGTACCCAGTTCTCTGTGGCTGCTGGACTGCTACAAATTAGGTCTTGGATTTTTATCATATTTTCAACCCATGATCATATTATGTTATTACCAAGGGAAGTTTTGAAGATGTGTTTAAAAATAATAATGACTTGATGTTGAGATAATCAAAAGGGAGGTCATACAACTAGGCTCAGCCTCATTACATTTCTTTAAAATCAGAGCATTTTTTATGGCTGGTAACAGATGGAGAGAGGTCAGAGAAATTCAAAGCATGGGACTGATTTAGAATGCCCTGGCTGACTTTCAAGATGAGGAGCTGCAAAGAAGGGCTTGAGAGAAGGCTAACTGTGGAGGTAGATGAACACAAGCATGAAAATATATGTGTGTATGTGAGGTATCTGGTGGGAGAGGGAAATGTCTTGGCTTAGAGGATGTGGTTAGCACCCCTTTCTGACACTTTCAGGAGAGATGTGATGCTCCTATACCAAAAAAAAAAAAAAAAAAAAAAAAAAAGAGCAAGGGATTAAAAAAAAAAAAAATCTATCCAGTTGTGATCACTGCTGAGGTTTTAAAAGATCATCCTTATCCTTATCTTTTTGCTTTATGTTACAAGTTCTTGGAATTCTCCACACTCAGTTTCTCAATTTGAAACATTCACATGCTGAAAAGGGTTTTGTTAAGAGGCATACATAACCCCCTTTTGCAAAGGGGTCTGCATATGAGAAAGATGCAGAAAGATGTTAATAAAAAAAGTATCCTGAGCCACCTAATGACCCTGTAAGTGACAAAACACTACACTAGAAACTGATTAAATTCAATCTGAAATTCATTTTTAAATGGAGGCATCTGAAAATGTTGGCTCTGTCAGCCAATGAAGGAAAATGAGATTTTGTAACTTGTGGTTCATGTAAAAGAGTTGTCTATGAACCCGCGGTCTGGGGCCGAGAACAAAGCAGGATAAACAGGGCTATCTTGTCTGGGTCAATACCACCTGGCCGGAACCTCCCCTCTGTCTACTGCCCCTTGACGCCGGGTAAAGTCATACATCAACTGGTTGCTATGTGAACAAAGATAAGCCCCCAGCCCACAGGAACAAAGTCCTGATGCCCTTTTGCTATCATGTAATCTTTCTGTTAATGTTTAAATAAGCCAATAGTGTGTCGCTATGCTGAATTCCACACCCCTAAGCCCCTTACCCCATAATAATCCCTAGCTTTCGAGCCTCGTGGCCGACATCTGTTATCTCCTGTGTGGGATGCATGTCAGTCCGGAGCTCCGTCATAAACTACCTCGTGTAATTATATCAAGGCCTTTTCGTGATTCTTTGGGTGCCCTCCAAATCAGAAATTGGGTGGGGGTTTCCCCACTAGGTCTAACACCAACAGGGAAATGAAACATGCAGTGTAGGCTAAAGTTACCCTGGCCAAAAACCATTCTGCTCGTGTTCAAGAACATTTAGAAAACCGCTGTGATAGTATAGGACAGTACATTCATTCACAATGCCCCATAAATGAGTCTGTCTTCAGGCAAGAACGAAAATACTGTTATCCTTGTGGACTGAGGCAGAACCACAAGGGGAAAGAGAAGAAGGTAGAGAGAGGAGAAAAGGACATGGGGTAGGAATCTTGAAAACACGGCCATGAGGACTGGCCAGTTGGAGTAAGAGCAGCCTAGATGAATATGACAAACCATATTGTGGGATTATTGGCAGAGAAGTGAACATTATATATCTGCCCAGCTCTTATGAATATAAAAGTATTGTCTTTTATCTGTAAACTGAATAATCAAAGAAGGTGTAGAAATCCCCAGCTGATGATGAAATATTTACTACAACACACACTGCATTTAATGCTCATGGCCCTGGTTAGTCAGAAGATCATTATACACTAGTGCATTTTCCCAAGGGACTGGCCACTGCACATAAAAGCCTCAAGTCA ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????E???????????????????????????????????????????????????L???????????K??????????????????????????FFE???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????N????????????EE?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????I???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????EE??????????????????????????????G??E????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ```" "__label__bug Asymmetric readout circuit has error I wrote that the resonator voltage is equal to the drive current over the resonator impedance, but that ignores the impedance of the output circuit." __label__enhancement Profil Minions sans image Liste des profil sans image **Beasts :** - [x] Battle Boar - [x] Blind Walker - [x] Dracodile - [x] Splatter Boar **Units :** - [ ] Boil Master and Spirit Cauldron - [ ] Croak Trappers - [x] Farrow Commandos - [x] Farrow Varlkyries - [x] Lynus&Edrea - [ ] Swamp Gobbers River Raiders **Solo :** - [x] Bog Trog Mist Speaker - [x] Bog Trog Mist Trawler - [x] Bone Shrine - [ ] Eilish Garrity - [ ] Gatorman Husk - [x] Gatorman Soul Slave - [ ] Gremlin Swarm - [x] Hutchuck - [x] Kwaak - [ ] Longchops - [ ] RalukMoorclaw - [x] Swamp Gobber Chef - [ ] Void Leech Todo par profil : - Découpe image depuis https://cards.privateerpress.com - 300 x 300 pixel - en png avec fond transparent - MAJ Json pour lier au profil click'n'feat - add lien absolu image - add param width & heigth - huge 50 / 50 - large 20 / 20 - medium 15 / 15 - small 12 / 12 "__label__bug Randomize Loadouts hides all the characters and vault When players click on the pi symbol in the lower right corner, the app redirects the user to an empty page." __label__question Folder Color Is there a way to change the Default color of folders? "__label__question Collage Making Support Does libvips supports collage making? (I searched but seems it does not support). If yes, plz share some relevant links; else plz share the roadmap and kindly suggest some alternate libraries/tools for this purpose. Context: We are using libvips for image transcoding to jpeg and now want to create collages for some statically or dynamically selected related images. Regards, Vikas" __label__enhancement Improve markdown the markdown does not contain enough Information about the usage of the package. __label__bug Panopticlick issues Please check why do we show different values for desktop and Android https://twitter.com/BraveSampson/status/957693627903500288 "__label__bug ReactorContextWebFilter overwrites any existing context values If a subscription context is established in a WebHandler or WebFilter that is invoked before SpringSecurity, it gets replaced rather than merged at this point: https://github.com/spring-projects/spring-security/blob/450600cbb8bd931496804e3b17b01c0e7655e27f/web/src/main/java/org/springframework/security/web/server/context/ReactorContextWebFilter.java#L41-L43 If using `subscriberContext(c -> ...)` the caller is expected to merge the context themselves. So, should be something like: ``` c.putAll(Mono.defer(() -> this.repository.load(exchange)).as(ReactiveSecurityContextHolder::withSecurityContext))); ```" "__label__enhancement Update Scratch Credits Page Request to add SFE (Siegel Family Endowment) to the list of supporting organizations **Current Text:** Supporting Organizations National Science Foundation, Scratch Foundation, Google, LEGO Foundation, Intel, Cartoon Network, Lemann Foundation, MacArthur Foundation. **New Text:** Supporting Organizations National Science Foundation, Scratch Foundation, Siegel Family Endowment, Google, LEGO Foundation, Intel, Cartoon Network, Lemann Foundation, MacArthur Foundation. Link: http://www.siegelendowment.org/ " "__label__enhancement Document content creation - [x] Modules - [x] `eta.json` - [x] Controllers * [x] Decorators + [x] `@eta.mvc.flags()` built-ins * [x] Class properties (of `eta.IHttpController`) - [x] Models - [x] Static files * [x] Client-side JS setup (soon to be in `eta generate clientjs`, but still document it - [x] Views - [x] View metadata This is not a full list of items that need documentation (for instance, `EntityCache` and Python controllers are not listed). However, this is (theoretically) the bare minimum that a completely new developer would need to know in order to be productive. @crossroads-education/eta-v2-content Please look at this and comment here which items you'll be working on." __label__enhancement We should separate the backend go application to dedicated path The frontend and the backend code should be clearly separated to isolated paths. Proposed: /go-service /elm-client "__label__question Cambiar opción en menú aplicaciones En vez de Información carrera, poner ""Reglamento""" __label__enhancement Add tests __label__enhancement History Currently freewallet has to make 8 separate calls every 5 minutes to get tx history for the various transaction types..... instead of just a single call. Need to update xchain with a /api/history/{address} which returns last 100 of each tx type. "__label__enhancement add option to write out model visibilities into a column Will be useful both for debugging (i.e. montblanc), and for the redundant calibration solver made by @radiosky-abhik and @Trienko." "__label__enhancement fiipregatit.ro prerelease Requirements: - Deploy password protected site to production - Allow adding content (guides, campaigns) as an editor - Be able to see the content you added in an as close to final version as possible (leaving small UI fixes for final releases) " "__label__bug Баг соединения Тобразной трубы. <!-- 1. ОТВЕТЫ ОСТАВЛЯТЬ ПОД СООТВЕТСТВУЮЩИЕ ЗАГОЛОВКИ (они в самом низу, после всех правил) 2. В ОДНОМ РЕПОРТЕ ДОЛЖНО БЫТЬ ОПИСАНИЕ ТОЛЬКО ОДНОЙ ПРОБЛЕМЫ 3. КОРРЕКТНОЕ НАЗВАНИЕ РЕПОРТА НЕ МЕНЕЕ ВАЖНО ЧЕМ ОПИСАНИЕ -. Ниже описание каждого пункта. 1. Весь данный текст что уже написан до вас - НЕ УДАЛЯТЬ И НЕ РЕДАКТИРОВАТЬ. Если нечего написать в тот или иной пункт - просто оставить пустым. 2. Не надо описывать пачку багов в одном репорте, (!даже если там все описать можно парой слов!) шанс что их исправят за раз, крайне мал. А вот использовать на гите удобную функцию - автозакрытия репорта при мерже пулл реквеста - исправляющего данный репорт, будет невозможно. 3. Корректное и в меру подробное название репорта - тоже очень важно! Чтобы даже не заходя в сам репорт - было понятно что за проблема. Плохой пример: ""Ковер."" - что мы должны понять из такого названия? Хороший пример: ""Некорректное отображение спрайтов ковра."" - а вот так уже будет понятно о чем репорт. Это надо как минимум для того, чтобы вам же самим - было видно, что репорта_нейм еще нет или наоборот, уже есть, и это можно было понять не углубляясь в - чтение каждого репорта внутри. Когда название не имеет конкретики, из - которого нельзя понять о чем репорт, это также затрудняет функцию поиска. --> #### Подробное описание проблемы При подсоединении к Тобразной трубе труб с запада и потом юга вписывает южную трубу в две переменные, когда должно записывать только в одну. #### Что должно было произойти #### Что произошло на самом деле #### Как повторить прикрутить трубы как показано на скрине #### Дополнительная информация: ![2016-10-03_12-56-32](https://cloud.githubusercontent.com/assets/7734424/19033861/48488f5a-8969-11e6-9d2e-c5cab52ffea4.png) " "__label__enhancement MSSQL reserved 'PLAN' causing problems. I temp fixed this by placing <cfset arguments[1][1] = ""#replace(arguments[1][1],'.PLAN','.[PLAN]','ALL')#""> in the microsoftmssql adapter (line 41). " "__label__enhancement Point based 3rd class resources are missing (holy power, soul shards etc) As the title says, they're all missing, thus making gameplay (especially in Legion where nearly all classes have something like this) very hard. Needs to be added. High priority. " "__label__enhancement Add a download button to PRE blocks that point to files We have PRE blocks that can pull in external files directly. There is a Copy button for these PRE blocks, and it'd be nice to also have a Download button available. " "__label__bug Minimap icons displaying only in fixed mode Currently, the minimap icons (f.e. for fishing spots) are displayed on minimap only in fixed mode, but when changed to resizable mode, they dissapear." __label__enhancement [GENERAL] Prevent immediate automatic restart which causes 100% CPU usage Evok starts immediately if it fails to start (eg. a port is used by another process - https://forum.unipi.technology/topic/516/evok-high-cpu-usage/7 ) which causes 100% usage of CPU. This can be fixed by StartLimitIntervalSec and StartLimitBurst of the systemd script - https://www.freedesktop.org/software/systemd/man/systemd.unit.html#StartLimitIntervalSec= "__label__enhancement Request - Viber <!-- If you want a new icon - fill in this form. If you want something else, just type it in here :-) --> ## The icon I want is: <!-- We need these three piece of information --> * Name: viber * URL: https://www.viber.com * Link to icon: i don't now :( <!-- The next bit is helpful to us --> * Vector version of the logo: * Official style guide or brand guide: " "__label__bug Incorrect method used https://github.com/FRC-1250/Team-1250-PowerUp-Code/blob/3ee963df903e449465cc7e96a948753a82556c92/src/org/usfirst/frc/team1250/robot/commands/Cmd_EleHome.java#L23 This method returns you to -1 in TICKS which in our case, is slightly above the ground (~0.0009 in). Would resolve this by making it similar to scale. `Robot.s_elevator.setLiftPosition(Robot.s_elevator.SCALE_POS);` I propose we avoid using function overloading all together because it's fairly easy to miss. (Damien - Function overloading allows for multiple functions to be named the same in the same scope but accept different parameters. The code knows which one to select based on what you pass into it)" __label__bug Can't delete sections __label__bug ScalarParameters are not passed to subqueries This leads to `KeyError` during translation. __label__bug [ci] AppVeyor is trying to deploy in case of failure **Introduction** AppVeyor should deploy build only in case of success as in case of travis-ci. __label__enhancement Feature: Get list of top players in a statistic (with minutes played factored in or not) __label__bug causes compile errors in a project with custom inspectors If UnityPickers is put into a project with any custom inspectors you will get the following compile error 'Editor' is a 'namespace' but is used like a 'type' "__label__bug [TW-1438] Configuration setting rc.confirmation=no no longer disables confirmation requests. _Adam Coddington on 2014-10-16T19:40:00Z says:_ In a [recent pull request against the taskw library|https://github.com/ralphbean/taskw/pull/71], it became apparent that `rc.confirmation` was no longer working as expected. Earlier this afternoon, I spoke with (at)Unode on the `#taskwarrior` IRC channel, and he confirmed that he is able to reproduce the issue. {code} [12:31:01] Unode coddingtonbear, have you ran into this issue during your experience with inthe.am ? [12:31:40] coddingtonbear oh, no, somebody posted a PR against taskw --> https://github.com/ralphbean/taskw/pull/71 [12:31:45] coddingtonbear Unode -^ [12:33:28] Unode Yeah I've seen that one too. [12:34:24] Unode Though I have confirmations on as I'm too clumsy with using the right order or arguments. [12:35:10] Unode coddingtonbear, would it be too much to ask that you add a bug report on taskw's jira linking to that one? [12:35:21] coddingtonbear oh, are you sure it's actually a bug, though? [12:35:24] coddingtonbear if so, totally [12:35:35] coddingtonbear I haven't tried verifying it quite yet [12:36:52] Unode coddingtonbear, just confirmed. [12:37:08] Unode This is a recurring task. Do you want to modify all pending recurrences of this same task? (yes/no) is always shown. [12:37:23] coddingtonbear awesome [12:37:30] coddingtonbear I'll add it {code}" "__label__question Password is required on every refresh, after leaving IDE running overnight Hi! After successfully installing and configuring the plugin in WebStorm, the plugin works as it should during that day. The next day, if I left the IDE running, it will ask for my Gerrit password every time I click the refresh button. If I restart the IDE, it works fine again. I couldn't find any settings that looked relevant for this issue. Plugin version 1.0.4-146 WebStorm version 2017.2.4 Frank" __label__enhancement Lock package versions in requirements.txt __label__enhancement Create nuget package __label__question A quoi sert le champ description dans la modification du profil d'un utilisateur ? | Q | A | ------------- | --- | Bug report? | yes/no | Version? | master/7.0/etc. car il ne s'affiche nul par ailleurs qu'en mode édition.... a minima l'afficher sur la partie publique du profil http://claco.univ-lyon1.fr/profile/christophe.batier "__label__question API: How to list all cases? Hi *, Question about the API: How to list all cases (to extract all caseId's)? Based on the API documentation, it's a ""GET"" of ""/api/case"". When I do this, only the last created case is returned. Any idea? /x " "__label__bug Fix VTTRegion support **Have you read the [FAQ](https://goo.gl/JE1Sy5) and checked for duplicate issues**: Yes **What version of Shaka Player are you using**: 2.2.8 **Can you reproduce the issue with our latest release version**: Yes **Can you reproduce the issue with the latest code from `master`**: Yes **Are you using the demo app or your own custom app**: demo app **What browser and OS are you using**: Chrome 63, Ubuntu 17.10 **What did you do?** Load Angel One and enable the subtitles **What did you expect to happen?** Subtitles are shown correctly **What actually happened?** ![image](https://user-images.githubusercontent.com/8983024/33936566-491b8c54-e000-11e7-89f5-00cf7150298e.png) " "__label__enhancement Enhancement: support raw iControl REST calls similar to Ansible uri module <!--- Verify first that your issue/request is not already reported in GitHub --> ##### ISSUE TYPE - Feature Idea ##### COMPONENT NAME new bigip_icontrol_rest_uri ##### SUMMARY There should be a module to perform ""raw"" iControl REST calls with GET, PUT, PATCH, POST. This would facilitate: a.) getting raw data from BIG-IP b.) supporting endpoints that may not have an existing F5 Ansible module This could be thought of similar to bigip_command, but for low-level iControl REST calls (leaving SOAP out of scope). ##### STEPS TO REPRODUCE <!--- For bugs, show exactly how to reproduce the problem. For new features, show how the feature would be used. --> <!--- Paste example playbooks or commands between quotes below --> via the Python SDK you would want something like. ``` mgmt = ManagementRoot(bigip_ip, bigip_username, bigip_password, port=bigip_port) session = mgmt._meta_data['bigip']._meta_data['icr_session'] ```` Then you could have an Ansible module with semantics similar to the uri module. ``` - name: Create a chen deployment using iControlLX bigip_icontrol_rest_uri: url: https://bigip/mgmt/tm/chen/deploy method: POST user: your_username password: your_pass body: ""{{ lookup('file','deploy.json') }}"" force_basic_auth: yes status_code: 201 body_format: json ``` <!--- You can also paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- What did you expect to happen when running the steps above? --> ##### ACTUAL RESULTS <!--- What actually happened? If possible run with high verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes below --> ``` ``` " "__label__enhancement Ensure selected filter set, dye, excitation is in view We should try and scroll the lists to show the selected item in these lists. " "__label__bug Assignment expression evaluation doesn't support ""-"" operator " "__label__enhancement [TW-61] Extract only tasks with annotations _Aikido Guy says:_ As discussed here: http://taskwarrior.org/boards/1/topics/2044#message-2047 It would be nice if tasks could be filtered based on annotations. For example, if I have 10 tasks and 4 of them have annotations and 6 of them don't have annotations, I'd like to be able to list the 4 with annotations." "__label__enhancement Undo Rather than Confirm Hm, is this the place for feature requests? I don't know. Either way, rather than having to do the clear command twice there should be the ability to undo the clearing of inventory. It would speed up clearing a lot while still preventing loss of important items! Thanks, James." __label__enhancement Empty list Tell users that there're no heroes when list is empty "__label__enhancement Crossref field is erased if the entry that matches the required crossref field is deleted (even if the bibtex key is duplicated) Crossref field is erased if the entry that matches the required crossref field is deleted (even if the bibtex key is duplicated) I have tested it on JabRef version 4.1 on Fedora 27 (but I had observed it since version 4.0). Steps to reproduce: 1. Create an entry with bibkey 'abc' 2. Create another entry with bibkey 'abc' (yes, we will have duplicated entries) 3. Create an entry with a crossref set to 'abc' 4. Erase any of the entries with bibkey 'abc' 5. The entry that has the crossref set to 'abc' will have that crossref information removed (although there is an entry which bibkey still matches the required crossref'). My suggestion: - After deleting an entry, check if there is a match to the crossref'ed entry. If so (as it is the case for duplicated bibtex entries), leave it as it is. If there isn't a match, ask the user if the entry should be deleted (or, at least, create a configuration option to handle this). Personally, I would prefer to leave the crossref field as is, so that I could detect (and fix) the inconsistency later. " __label__bug Bouton apparait sur produit simple en rupture de stock CMS version: Prestashop 1.5.6.X Le bouton 1-Click button n’apparaît pas sur les produits sans déclinaisons : ![produitsimple1](https://user-images.githubusercontent.com/35369184/35562907-31680710-05b5-11e8-98c4-cd2b502bdb00.PNG) Le champ déclinaison est bien vide sur ce produit : ![produitsimple3](https://user-images.githubusercontent.com/35369184/35562950-64a39842-05b5-11e8-9efa-4aa871a67d49.PNG) Lorsque que l'on procède à un achat : ![produitsimple2](https://user-images.githubusercontent.com/35369184/35562926-49bfac96-05b5-11e8-8df3-345841d2d19b.PNG) Le problème n'existe pas sur les produits avec déclinaisons dans Prestashop 1.5.6.X "__label__bug Scan fails on 0 or NULL `ce_activity_type_id` A new field was added to the `ce_m_activity` table to accommodate the activity sub type. All data since 1st Jan 2017 will be migrated to the new activity types / sub-types however older data will have an empty value for the field `ce_m_activity.ce_activity_type_id` When the Go sql package attempts to scan an empty value into a specified type, in this case an int, it fails. In most cases have use `COALESCE` for empty strings but cannot do that here as it is an int. So need to either: * Set old activity records to have a type id such as -1 which corresponds to a type called something like `unspecified` or `n/a`, **OR** * Handle nullable fields using [sql.NullInt64](https://golang.org/pkg/database/sql/#NullInt64) The first option is a bit of a kludge, the second adds complexity as `sql.NullInt64` is a struct with two values. The latter is probably a more sensible choice. " __label__enhancement group autocomplete suggestions by type (properties vs methods etc) IDEBUG-555 Would really be good to have something similar to what you have for java !Screen Shot 2015-08-07 at 15.04.19.png|width=600! "__label__bug Tab after editing a field corrupts NULL in adjacent field _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2894 Originally created at: Wed May 27 22:28:41 2015 Originally last updated at: Wed May 27 22:28:41 2015 Hi. Have not spoken to you for ages ! I was editing a database field in a table. And after typing the new value I pressed TAB as way to safely exit from the cell i was editing. The adjacent column cell was set to NULL. My use of TAB resulted in the NULL being replaced with Blank and ended up with application failure because i did not realize i did that. I do not think tabbing into a field present to NULL should change it **Plugins loaded:** JavaScriptHighlighterPlugin, PopulateRandom, CsvExport, CsvImport, ScriptingQt, ConfigMigration, SqlExport, MultiEditorHexPlugin, SqlFormatterSimplePlugin, MultiEditorBoolPlugin, DbSqlite2, JsonExport, MultiEditorTextPlugin, PopulateDictionary, PopulateScript, PopulateRandomText, MultiEditorDatePlugin, MultiEditorNumericPlugin, ScriptingSql, SqliteHighlighterPlugin, SqlEnterpriseFormatter, DbPluginSqlite3, MultiEditorTimePlugin, HtmlExport, XmlExport, PopulateSequence, PdfExport, PopulateConstant, Printing, ScriptingTcl, RegExpImport, MultiEditorDateTimePlugin **Version:** 3.0.3 **Operating System:** Windows 7, 32bit" "__label__bug Kete: survive after a daemon restart Currently it doesn't, so we get a zombie-like process that tries to live, but which is actually just too depressed to be able to work correctly. We should fix that with unicorns, rainbow, or a better code" "__label__bug Unable to start DView on Windows Forwarded from https://beopt.nrel.gov/node/962 ""The application was unable to start correctly (0xc000007b). Click OK to close the application."" Previous versions of DView worked for them." __label__question Adding new custom field gives 404 error. With setup all goes well. After that when trying to add new field to any type of objects it gives 404 page. ![capture](https://user-images.githubusercontent.com/4238840/35116946-a97aa948-fc95-11e7-9dfa-0bc7a04090ed.PNG) **My Environment:** Redmine version 3.4.3.stable.17016 Ruby version 2.0.0-p643 (2015-02-25) [x86_64-linux] Rails version 4.2.8 Environment production Database adapter Mysql2 **Used Redmine plugins:** computed_custom_field 1.0.6 redmine_agile 1.4.5 "__label__enhancement Submission as a Parcelable I would like to pass the selected Submission to another activity, but I can see that Submission does not implement `Parcelable`. Is there a way to serialize it without using some fancy library?" __label__enhancement Script Position position of the bootstrap scripts are put in header. Should be put in bottom of the body. "__label__bug Vehicle with motor started via mod not moving on dedicated server On dedicated server, when motor is started automatically via StartMeUp, it does not move when issued move commands. Likely the server does not see that the motor has started. " "__label__enhancement Doesn't match folds over multiple lines This is just ridiculous. Consider the following regex: ``` /(\{)(.*?)(\})/ ``` The following code will be folded: ``` { test } ``` The following code will NOT be folded: ``` { test } ``` What's the point!? Also, while we're on the subject, if you're gonna extend the folding system, at least make it compatible with the built-in folding. Let us toggle _both_ types of folding at once, not separately." __label__bug C++ Packager requires but then ignores root folder in manifest **Issue** Currently the c++ implementation of the packager requires all files and folders in the manifest to be contained within one root folder. Any items outside of this will not be parsed. However this root folder is then ignored when assembling into the arx package. **Solution** The packaging routine needs to be reworked so that a root folder is not needed in the manifest and that items declared at the root of the file are properly handled. This will require adjusting the parser grammar and rewriting how the folder structure is built from the parse result. __label__bug default password warning in geoserver even after changing Reported here: https://groups.google.com/a/boundlessgeo.com/d/topic/geonode-dev/Ce60gRr6bZs/discussion "__label__bug Cinnamon crashes on display configuration I usually use my laptop with an external monitor and the laptop display is disabled. Sometimes I would like to enable the laptop display as a secondary monitor in Cinnamon with the Display app. When I hit apply first the output goes to the laptop screen, the ""Keep this configuration"" dialog does not appear. Then after a few seconds (I guess when the ""Keep this configuration"" timer is up in the background) I see some stretched output on both displays. I can move the mouse pointer but can't click r do anything with the keyboard. Ctrl + Alt + Fn works. All I can do is reboot with sysrq. Before I was already able to apply the described setting after a few freezes and restarts. So I would say it is intermittently working and pretty reproducible. I can set the displays to be mirrored, that works. Seem pretty similar to this: https://forums.linuxmint.com/viewtopic.php?t=224722 ``` Details ========================================= lsb_release -a No LSB modules are available. Distributor ID: LinuxMint Description: Linux Mint 18.1 Serena Release: 18.1 Codename: serena ========================================= Laptop model: Latitude E5550 ========================================= Lspci: 00:00.0 Host bridge: Intel Corporation Broadwell-U Host Bridge -OPI (rev 09) 00:02.0 VGA compatible controller: Intel Corporation Broadwell-U Integrated Graphics (rev 09) 00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller (rev 09) 00:04.0 Signal processing controller: Intel Corporation Broadwell-U Camarillo Device (rev 09) 00:14.0 USB controller: Intel Corporation Wildcat Point-LP USB xHCI Controller (rev 03) 00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03) 00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (3) I218-LM (rev 03) 00:1b.0 Audio device: Intel Corporation Wildcat Point-LP High Definition Audio Controller (rev 03) 00:1c.0 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #1 (rev e3) 00:1c.3 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #4 (rev e3) 00:1c.4 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #5 (rev e3) 00:1d.0 USB controller: Intel Corporation Wildcat Point-LP USB EHCI Controller (rev 03) 00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03) 00:1f.2 RAID bus controller: Intel Corporation 82801 Mobile SATA Controller [RAID mode] (rev 03) 00:1f.3 SMBus: Intel Corporation Wildcat Point-LP SMBus Controller (rev 03) 01:00.0 SD Host controller: O2 Micro, Inc. SD/MMC Card Reader Controller (rev 01) 02:00.0 Network controller: Intel Corporation Wireless 7265 (rev 59) ========================================= xrandr Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767 eDP1 connected (normal left inverted right x axis y axis) 1920x1080 60.05 + 59.93 48.04 1680x1050 59.95 59.88 1600x1024 60.17 1400x1050 59.98 1600x900 60.00 1280x1024 60.02 1440x900 59.89 1280x960 60.00 1368x768 60.00 1360x768 59.80 59.96 1152x864 60.00 1280x720 60.00 1024x768 60.00 1024x576 60.00 960x540 60.00 800x600 60.32 56.25 864x486 60.00 640x480 59.94 720x405 60.00 640x360 60.00 DP1 disconnected (normal left inverted right x axis y axis) HDMI1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 509mm x 286mm 1920x1080 60.00*+ 1600x900 60.00 1280x1024 75.02 60.02 1152x864 75.00 1024x768 75.08 60.00 800x600 75.00 60.32 640x480 75.00 60.00 720x400 70.08 HDMI2 disconnected (normal left inverted right x axis y axis) VIRTUAL1 disconnected (normal left inverted right x axis y axis) ========================================= ``` [xorg_logs.zip](https://github.com/linuxmint/Cinnamon/files/800411/xorg_logs.zip) Xorg log attached." "__label__question Flow upgrade to 0.64 results in bunch of new errors. I recently upgraded `flow-bin` and `.flowconfig` from `0.53` to `0.64` and now flow is resulting in bunch of new errors inside react-native framework files. What can I do about this situation? Error: node_modules/react-native/Libraries/Components/ScrollResponder.js:480 480: var { animated, ...rect } = rect; ^^^^^^^ rect. This type is incompatible with 472: rect: { x: number, y: number, width: number, height: number, animated?: boolean }, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ object type Property `animated` is incompatible: 472: rect: { x: number, y: number, width: number, height: number, animated?: boolean }, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ property `animated`. Property not found in 480: var { animated, ...rect } = rect; ^^^^^^^ rect Error: node_modules/react-native/Libraries/Inspector/Inspector.js:104 104: clearTimeout(_hideWait); ^^^^^^^^^ null. This type is incompatible with the expected param type of 733: declare function clearTimeout(timeoutId?: TimeoutID): void; ^^^^^^^^^ TimeoutID. See lib: /tmp/flow/flowlib_213409a3/core.js:733 Error: node_modules/react-native/Libraries/Interaction/InteractionManager.js:171 171: _nextUpdateHandle = setTimeout(_processUpdate, 0 + DEBUG_DELAY); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TimeoutID. This type is incompatible with 182: _nextUpdateHandle = 0; ^ number Error: node_modules/react-native/Libraries/Lists/FlatList.js:465 v-------------------------------- 465: this._virtualizedListPairs.push({ 466: viewabilityConfig: this.props.viewabilityConfig, 467: onViewableItemsChanged: this._createOnViewableItemsChanged( ...: 470: }); -^ rest parameter array of call of method `push`. Has some incompatible type argument with 249: push(...items: Array<T>): number; ^^^^^^^^ array type. See lib: /tmp/flow/flowlib_213409a3/core.js:249 Type argument `T` is incompatible: v 465: this._virtualizedListPairs.push({ 466: viewabilityConfig: this.props.viewabilityConfig, 467: onViewableItemsChanged: this._createOnViewableItemsChanged( ...: 470: }); ^ object literal. This type is incompatible with 476: _virtualizedListPairs: Array<ViewabilityConfigCallbackPair> = []; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ViewabilityConfigCallbackPair Property `viewabilityConfig` is incompatible: 466: viewabilityConfig: this.props.viewabilityConfig, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ undefined. Inexact type is incompatible with exact type 26: viewabilityConfig: ViewabilityConfig, ^^^^^^^^^^^^^^^^^ ViewabilityConfig. See: node_modules/react-native/Libraries/Lists/ViewabilityHelper.js:26 Error: node_modules/react-native/Libraries/Lists/FlatList.js:558 558: return keyExtractor(items, index); ^^^^^ array type. This type is incompatible with the expected param type of 151: keyExtractor: (item: ItemT, index: number) => string, ^^^^^ ItemT Error: node_modules/react-native/Libraries/Lists/ViewabilityHelper.js:91 91: this._timers.forEach(clearTimeout); ^^^^^^^^^^^^ function type. This type is incompatible with the expected param type of 572: forEach(callbackfn: (value: T, index: T, set: Set<T>) => mixed, thisArg?: any): void; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function type. See lib: /tmp/flow/flowlib_213409a3/core.js:572 The first parameter is incompatible: 77: _timers: Set<number> = new Set(); ^^^^^^ number. This type is incompatible with 733: declare function clearTimeout(timeoutId?: TimeoutID): void; ^^^^^^^^^ TimeoutID. See lib: /tmp/flow/flowlib_213409a3/core.js:733 Error: node_modules/react-native/Libraries/Lists/ViewabilityHelper.js:200 200: this._timers.delete(handle); ^^^^^^ TimeoutID. This type is incompatible with the expected param type of 77: _timers: Set<number> = new Set(); ^^^^^^ number Error: node_modules/react-native/Libraries/Lists/ViewabilityHelper.js:207 207: this._timers.add(handle); ^^^^^^ TimeoutID. This type is incompatible with the expected param type of 77: _timers: Set<number> = new Set(); ^^^^^^ number Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:484 v 484: this.scrollToIndex({ 485: animated: false, 486: index: this.props.initialScrollIndex, 487: }), ^ object literal. This type is incompatible with the expected param type of v 266: scrollToIndex(params: { 267: animated?: ?boolean, 268: index: number, ...: 271: }) { ^ object type Property `index` is incompatible: 486: index: this.props.initialScrollIndex, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ null or undefined. This type is incompatible with 268: index: number, ^^^^^^ number Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:484 v 484: this.scrollToIndex({ 485: animated: false, 486: index: this.props.initialScrollIndex, 487: }), ^ object literal. This type is incompatible with the expected param type of v 266: scrollToIndex(params: { 267: animated?: ?boolean, 268: index: number, ...: 271: }) { ^ object type Property `index` is incompatible: 486: index: this.props.initialScrollIndex, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ undefined. This type is incompatible with 268: index: number, ^^^^^^ number Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:500 500: clearTimeout(this._initialScrollIndexTimeout); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ number. This type is incompatible with the expected param type of 733: declare function clearTimeout(timeoutId?: TimeoutID): void; ^^^^^^^^^ TimeoutID. See lib: /tmp/flow/flowlib_213409a3/core.js:733 Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1016 1016: distanceFromEnd < onEndReachedThreshold * visibleLength && ^^^^^^^^^^^^^^^^^^^^^ null or undefined. The operand of an arithmetic operation must be a number. Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1016 1016: distanceFromEnd < onEndReachedThreshold * visibleLength && ^^^^^^^^^^^^^^^^^^^^^ undefined. The operand of an arithmetic operation must be a number. Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1094 1094: this.props.onEndReachedThreshold * visibleLength / 2; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ null or undefined. The operand of an arithmetic operation must be a number. Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1094 1094: this.props.onEndReachedThreshold * visibleLength / 2; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ undefined. The operand of an arithmetic operation must be a number. Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1170 1170: distanceFromEnd < onEndReachedThreshold * visibleLength ^^^^^^^^^^^^^^^^^^^^^ null or undefined. The operand of an arithmetic operation must be a number. Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1170 1170: distanceFromEnd < onEndReachedThreshold * visibleLength ^^^^^^^^^^^^^^^^^^^^^ undefined. The operand of an arithmetic operation must be a number. Error: node_modules/react-native/Libraries/Lists/VirtualizedList.js:1247 1247: return frame; ^^^^^ object type. This type is incompatible with the expected return type of v 1210: ): ?{ 1211: length: number, 1212: offset: number, ...: 1215: } => { ^ object type Property `inLayout` is incompatible: v 1210: ): ?{ 1211: length: number, 1212: offset: number, ...: 1215: } => { ^ property `inLayout`. Property not found in 1247: return frame; ^^^^^ object type Error: node_modules/react-native/Libraries/Lists/VirtualizedSectionList.js:236 236: key: keyExtractor(viewable.item, info.index), ^^^^^^^^^^ null or undefined. This type is incompatible with the expected param type of 101: keyExtractor: (item: Item, index: number) => string, ^^^^^^ number Error: node_modules/react-native/Libraries/StyleSheet/flattenStyle.js:36 36: return getStyle(style); ^^^^^^^^^^^^^^^ number. This type is incompatible with the expected return type of 29: function flattenStyle(style: ?StyleObj): ?Object { ^^^^^^ object type Found 30 errors error Command failed with exit code 2." "__label__question Getting errors when using fxFlex in template Using [FxFlex](https://github.com/angular/flex-layout) as I do through the rest of the app, but getting errors when used inside the virtualscroll component Below is the markup, and the error Another strange issue I'm seeing is that no matter what height i set the scroll container to, it is expanded to the length of every item and it doesnt virtually scroll at all but displays them all. Would appreciate your feedback, thanks ``` <od-virtualscroll [vsData]=""data"" [vsOptions]=""options"" fxFlex=""100"" fxFill class=""vscrollcontainer"" style=""background-color: red""> <ng-template let-item fxFlex=""100""> <mat-card> <app-date fxFill fxFlex=""100"" [date]=""item"" [showCancel]=""false""></app-date> </mat-card> </ng-template> </od-virtualscroll> ``` ``` ERROR TypeError: Cannot set property '-webkit-flex' of undefined at EmulatedEncapsulationDomRenderer2.DefaultDomRenderer2.setStyle (platform-browser.js:2924) at BaseAnimationRenderer.setStyle (animations.js:590) at DebugRenderer2.setStyle (core.js:15416) at eval (flex-layout.es5.js:208) at Array.forEach (<anonymous>) at applyMultiValueStyleToElement (flex-layout.es5.js:204) at applyStyleToElement (flex-layout.es5.js:179) at FlexDirective.BaseFxDirective._applyStyleToElement (flex-layout.es5.js:699) at FlexDirective._updateStyle (flex-layout.es5.js:2836) at FlexDirective._onLayoutChange (flex-layout.es5.js:2823) ```" "__label__enhancement Support loading subtitle-only URLs Currently, there is no way to specify or automatically load a subtitle file. Implement a SubtitleInputContext in the container supporting Play, Stop, Pause and seek operations." __label__enhancement Add available APIs in documentation Use docblocs from public methods to generate the documentation __label__bug Crashes when importing CSV with command line _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2899 Originally created at: Mon Jun 8 22:14:21 2015 Originally last updated at: Mon Jun 8 22:14:21 2015 Any command that starts with a period such as .import or .mode or .separator makes SQLite Studio crash. I am trying to import a bunch of CSVs programmatically.\n\n**Operating system:**\nWindows 7\n\n**Version:**\n3.0.6 __label__enhancement Snapshot Testing - Travis - Snapshot testing for all the NativeBase components - Integrate this with NativeBase KitchenSink "__label__bug log4cxx missing I am compiling ROS Hydro desktop for my operating system with catkin. When I attempt to compile robot_state_publisher I get the following error: ``` ld: cannot find -llog4cxx ``` In the CMakeLists.txt file the log4cxx library is simply added to target_link_libraries without searching for it: ``` target_link_libraries(${PROJECT_NAME} ${PROJECT_NAME}_solver log4cxx ${orocos_kdl_LIBRARIES}) ``` I have compiled the log4cxx library for my operating system. How do you pick up the right binary during compilation? Is there any way of making this cross plattform, for example by using the package config file log4cxx supplies during compilation? " "__label__bug При вступлении в группу нет никакого сообщения об успехе Список участников не меняется, кнопка ""вступить не исчезает"". Изменения видны только после обновления страницы" "__label__bug Problems with adding entire albums I noticed that sometimes, especially with albums that have more songs, youtube will reject some requests, resulting in an incomplete list. There should be some delay added in between subsequent requests. Also, sometimes the tracks can be added out of order, because the song finding module looks for them concurrently. Needs to be re-ordered after the list is complete." "__label__bug Broken Breadcrumb Links @teddybradford - we have 12 breadcrumb links on http://welcomegrad.risd.edu/ that are broken and I believe they can only be fixed at the template level, as I checked the CMS: https://risd-graduate-welcome.risd.systems/cms and don't see where I can edit them. Here is a spreadsheet that tells you what the broken links are, what pages they are located on, includes small screenshots of where they are on the page, and what urls the links should be fixed with. Can you please fix these? Thanks! [welcome_grad_broken_links_2_8_18.xlsx](https://github.com/risd/risd-graduate-welcome/files/1711547/welcome_grad_broken_links_2_8_18.xlsx) " __label__question Can we set the selection of a subchart? I would like to set the selection of the subchart to 1 one month (while still keeping 12 months om the chart). Is that possible? "__label__bug Bildlink: Sprachenproblematik Wenn das GUI auf Deutsch eingestellt ist und dann ein französicher Bildlink (z.B. http://138.68.87.41/fr/home/5a0189089fc44425cc16b905) geöffnet wird, wird bloss die deutsche Startseite angezeigt. Dies kann etwa beim Versand des Bildlinks an einen Kollegen in einer anderen Sprachregion ziemlich mühsam sein (ist mir eben mit dem Kanton Freiburg fast passiert). Gäbe es die Möglichkeit, diesen Bildlink sprachunabhängig zu generieren? " __label__enhancement Have a default timeout I get issues with connections. With the default we wait for a connection for ever which locks up the jenkins build process. The default for the timeout should be set to perhaps 10 or 60 seconds to prevent this. "__label__bug Trying to add skip_destroy=""true"" to a vol attachment Terraform 0.9.8 Forgot to add skip_destroy=""true"" to an aws_volume_attachment - add it then plan: ``` ~ aws_volume_attachment.foo skip_destroy: """" => ""true"" Plan: 0 to add, 1 to change, 0 to destroy. ``` Then apply: ``` Error applying plan: 1 error(s) occurred: * aws_volume_attachment.foo: 1 error(s) occurred: * aws_volume_attachment.foo: doesn't support update ``` It would be much better if you could add skip_destroy especially as it is only a terraform flag and not a resource flag anyway. (also if something doesnt support update, the plan shouldnt plan a change)" __label__enhancement disable plugin plugin features when not logged in - [ ] blast button in details dialog - [ ] blast button for highlight region selection - [ ] side panel __label__bug Incorrect filebeat templates for HTTPD and Redis logs in CentOS HTTPD and Redis logs are not collected by filebeat due to incorrect paths and patterns. "__label__bug Adding defaultCommand prevents non-core plugins from working ### Problem Using `gluegun@2.0.0-beta.4`, if you add register a `.defaultCommand()` on your builder, it will prevent from running commands in other plugins. ### Scenario After adding a `.plugin()`, the `Runtime` shows the 2 plugins. The first being the default set, the 2nd one being the one I add. If you try to run it with `mycli plugin2 validcmd` the `.defaultCommand()` runs instead. You can see it fine, you just can't run it. ### Workaround Don't use `.defaultCommand()` (unfortunately). ### Where This May Be Happening I think the problem is in `findCommand` within `src/runtime/runtime-find-command.ts`. Here's how I think it's going down. * The [default plugin](https://github.com/infinitered/gluegun/blob/eeb40321305ace72f214a15ab2fe12234dad5a17/src/runtime/runtime-find-command.ts#L25) is taking precendent. * [finalCommandPath](https://github.com/infinitered/gluegun/blob/eeb40321305ace72f214a15ab2fe12234dad5a17/src/runtime/runtime-find-command.ts#L39) evals to `[]` because this command doesn't match anything * We then hit the if statement happy path and [wind up fishing up the default command](https://github.com/infinitered/gluegun/blob/eeb40321305ace72f214a15ab2fe12234dad5a17/src/runtime/runtime-find-command.ts#L66) * Then we [bail](https://github.com/infinitered/gluegun/blob/eeb40321305ace72f214a15ab2fe12234dad5a17/src/runtime/runtime-find-command.ts#L75) on our `find` because we found it... preventing the loop into our 2nd plugin (where the command really lives). ### Random Thoughts I wonder if we could do a 2 pass search. Identify the plugin first, and then search for the command within? " "__label__bug Umlaut containing links will not be recognized A link such as https://friendica.wäckerlin.ch/friendica is not correctly recognized, it will show up as a link up to https://friendica.w and from there on as normal text. See in the thread here: https://friendica.wäckerlin.ch/display/51a50594105720f23c0cb2c239587447 " "__label__question Change text size Hi, I just want to ask if there is any way to change text sizes of some elements, e.g posts, talks? The current ones are kinda big for me. By the way, I love the theme. Thank you!" "__label__bug Delete cascade with 11+ and Postgres throws exception ### Steps to reproduce ```java OtoThTop top = new OtoThTop(); top.setTop(""top""); for (int i = 0; i < 4; i++) { OtoThMany many = new OtoThMany(); many.setMany(""many ""+i); OtoThOne one = new OtoThOne(); one.setOne(true); one.setMany(many); many.setOne(one); top.getManies().add(many); } Ebean.save(top); -- delete fails ... Ebean.delete(top); ``` ### Model to reproduce ```java @Entity OtoThTop { @OneToMany(cascade = CascadeType.ALL) List<OtoThMany> manies; ... @Entity OtoThMany { @OneToOne(mappedBy = ""many"", cascade = CascadeType.ALL) OtoThOne one; ... @Entity OtoThOne { @OneToOne OtoThMany many; ... ``` " __label__enhancement Create API feature for generating a unique computation ID for a running server instance. __label__enhancement Enable Stripe for Subscriptions __label__enhancement Shironuri option Add an option to fill all the cells with white. "__label__enhancement Rename PPaaS to MPaaS to reflect multiple Monitoring Services For ex. UptimeRobot also uses such ""probes"" and they can be used almost identical to Pingdom ones. Therefore rename PPaaS to MPaaS (Monitoring Probes as a Service) and integrate support for UptimeRobot Probes. The user should be able to select one of both services or both services for adding IPs to the DNS" __label__bug Crash during wide-rows read workload *Installation details* Scylla version (or git commit hash): 666.development-0.20180206.6919c7434 Cluster size: 3 OS (RHEL/CentOS/Ubuntu/AWS AMI): GCE/CentOS 7 report_uuid: 4bcaf29a-5467-4e7f-ab4e-a8fdba4e6284 Node crashed while running this command (roughly halfway through): ``` cassandra-stress user profile=./profile.yml no-warmup ops\(single_partition=1\) duration=10m -node 10.240.0.57 -rate threads=30 ``` The table was populated by the following command: ``` cassandra-stress user profile=./profile.yml no-warmup ops\(insert=1\) -rate threads=16 -node 10.240.0.57 ``` The profile used: [profile.yml.txt](https://github.com/scylladb/scylla/files/1699410/profile.yml.txt) Notes: cache was disabled (`enable_cache: false` in scylla.yml) "__label__bug Moderators don't get flag notification Hi, I wonder why our administrator receives post flag notification but moderators don't get it." "__label__bug Add how to : ""Start project"" It's unclear when and how to start project." "__label__bug TypeError in Preview Pane after clicking 'Mark As Read' <!-- Thanks for taking the time to file an issue! The Mailspring community uses GitHub issues to coordinate develpoment. If you have question about Mailspring or a problem with your email account, search the Knowledge Base to see if it's addressed there. If it's not, join our Slack organization and ask the community: - http://support.getmailspring.com/hc/en-us/ - https://join-mailspring-slack.herokuapp.com/ Our team tries to respond to all GitHub issues. To make sure your issue is actionable, try to include the following information: --> Ran across an issue that potentially could be related to my email account. Previously for this email I use from Posteo.de (IMAP), which has a different domain (.net instead of .de), there was an issue with new mail only being synced on startup for some reason, but was resolved a few versions ago. However this morning I tried to mark an email as read via the right-click context menu, and the preview pane began displaying a read box of error message info: TypeError: Failed to execute 'evaluate' on 'Document': parameter 2 is not of type 'Node'. at QuotedHTMLTransformer._removeImagesStrippedByAnotherClient (/src\services\quoted-html-transformer.es6:62:24) at QuotedHTMLTransformer.removeQuotedHTML (/src\services\quoted-html-transformer.es6:55:10) at EmailFrame._emailContent (/internal_packages\message-list\lib\email-frame.jsx:59:34) at EmailFrame._writeContent (/internal_packages\message-list\lib\email-frame.jsx:83:72) at EmailFrame.componentDidMount (/internal_packages\message-list\lib\email-frame.jsx:27:10) ##### Are there any related issues? <!-- Try searching for both open and closed issues here: https://github.com/Foundry376/Mailspring/issues?q=is%3Aissue. Keep in mind that email features are often described differently on different platforms. (Conversations == threads, shortcuts == hotkeys, etc.) --> None that I could find ##### What operating system are you using? Windows 7 ##### What version of Mailspring are you using? 1.1.2-8ae17eae -- **Bug?** ##### Do you have any third-party plugins installed? If so, which ones? Default Plugins if any ##### Is the issue related to a specific email provider (Gmail, Exchange, etc.)? Possibly, previously had issues with this provider (IMAP, Posteo.de) ##### Is the issue reproducible with a particular attachment, message, signature, etc? <!-- Try to provide an example as a file attachment or a screenshot. --> ![typeerror](https://user-images.githubusercontent.com/5449443/35685699-69a570fc-0738-11e8-91cd-a79800d5cd19.png) -- **Feature Request?** ##### Does this feature exist in another mail client or tool you use? No " "__label__enhancement Cashmere Demo Page The demo site was based off the site @andrew-frueh example of a [style guide](https://spark.healthcatalyst.com/community/ux/pages/components) on spark. The current version loosely resembles that example. Our demo of our components needs improvement to bring it up to modern style guide standards This is a list of things that need to be done, but is not comprehensive: - [x] landing page (example: https://material.angular.io/ - [x] global navigation - [x] link back to our github repo - [x] global styles for documentation - [ ] tabbed code (eg. html / typescipt) component - [x] component list side bar styling - [x] version number / alpha release warning We desperately need help, if you wish to contribute please post your intention here or on #cashmere channel on slack. Please make pull requests small" "__label__bug Too many parameters when calling DeleteVolumeSnapshot in cli tool <!-- This form is for bug reports and feature requests! --> **Is this a BUG REPORT or FEATURE REQUEST?**: /kind bug **What happened**: From the code in `api` package, there is only one parameter `snapshot_id` needed when calling DeleteVolumeSnapshot function, but currently it still needs two parameters (`volume_id` and `snapshot_id`) to delete volume snapshot, which is unnecessary and makes user confused. **What you expected to happen**: We should remove `volume_id` parameter and only leave `snapshot_id` to call DeleteVolumeSnapshot` in osdsctl tool. **How to reproduce it (as minimally and precisely as possible)**: **Anything else we need to know?**: **Environment**: - Hotpot(release/branch) version: - OS (e.g. from /etc/os-release): - Kernel (e.g. `uname -a`): - Install tools: - Others: " __label__enhancement Adjustment Form use with naming convention for the field code (e.g. Adjustment#12-12.32) __label__enhancement Add README "__label__bug [TW-16] Default column labels _Frédéric Mangano says:_ The default configuration contains English user-visible strings for column labels. Since translations provide translations for these, I think they should be left empty in the configuration. The attached patch illustrates a way to preserve undefined labels and provide relevant and localized labels in that case.`" "__label__enhancement Make Label.BACKGROUND transparent in viewer Currently we assign a color with non-zero alpha. This should not be the case. When fixing this, also ensure that the other remaining special purpose ids defined in the `Label` class are treated properly. For some of them it may make sense to assign and expose color as a parameter." "__label__bug Cast annotation is not properly generated in the class file ``` from whq1238000@gmail.com: have found a possible bug in the checker-framework. After compiling with its javac I found the cast (target type 0x47) annotation contains offset which has value 0. It turns out the cast annotation is not properly generated in the class file. Annotation : 0x47000000 (b1 b2 b3 b4). where b1 is 0x47 and b2<<<8 + b3 is the offset. The checker I am using is 1.8.10 version and I have attached the source and compiled byte code. To be more specific, the problem is when we attach an cast annotation to a range of byte code, the offset doesn't point to the last byte code within range. Instead the checker attach the cast annotation to the nearest byte code. In the example I attached, the getSource() method should put a cast at offset 3 in principle while the checker put it at offset 2. This type of bugs happen in places where we evaluate a non-static method call or get field instructions.For example, in (@Untainted int) x. f and (@Untainted int) x.get(), the cast is by mistake attached to x as opposed to the actual evaluated value of type int. ``` Original issue reported on code.google.com by `mcart...@cs.washington.edu` on 12 Mar 2015 at 9:30 Attachments: - [MyTest.java](https://storage.googleapis.com/google-code-attachments/checker-framework/issue-410/comment-0/MyTest.java) - [MyTest.out](https://storage.googleapis.com/google-code-attachments/checker-framework/issue-410/comment-0/MyTest.out) " __label__bug Save date with new HackerRank items Date column is blank because I had backdated previous entries by hand. "__label__bug Errors when running in environment with SSR <!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION YOUR ISSUE MIGHT BE CLOSED WITHOUT INVESTIGATING --> ### Bug Report or Feature Request (mark with an `x`) - [x] bug report - [ ] feature request - [ ] question ### OS and Version? Windows 10, OS: win32 x64 ### Versions Angular CLI: 1.6.5 Node: 6.11.5 OS: win32 x64 Angular: 5.2.1 ... animations, common, compiler, compiler-cli, core, forms ... http, language-service, platform-browser ... platform-browser-dynamic, platform-server, router @angular/cdk: 5.1.0 @angular/cli: 1.6.5 @angular/flex-layout: 2.0.0-beta.12 @angular/material: 5.1.0 @angular-devkit/build-optimizer: 0.0.41 @angular-devkit/core: 0.0.28 @angular-devkit/schematics: 0.0.51 @ngtools/json-schema: 1.1.0 @ngtools/webpack: 1.9.5 @schematics/angular: 0.1.16 typescript: 2.4.2 webpack-node-externals: 1.6.0 webpack: 3.10.0 ### Repro steps Implement Single Share Button in environment running Angular-Universal for Server Side Rendering. ### The log given by the failure ERROR { Error: Uncaught (in promise): ReferenceError: navigator is not defined ReferenceError: navigator is not defined at getOS (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\core\bundles\ngx-share-core.umd.js:548:78) at new ShareButtons (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\core\bundles\ngx-share-core.umd.js:416:19) at ShareButtonsFactory (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\button\bundles\ngx-share-button.umd.js:137:12) at _callFactory (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10948:20) at _createProviderInstance$1 (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10900:26) at resolveNgModuleDep (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10882:17) at NgModuleRef_.get (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12119:16) at resolveDep (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12609:45) at createClass (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12471:29) at createDirectiveInstance (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12316:37) at resolvePromise (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:809:31) at resolvePromise (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:775:17) at C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:858:17 at ZoneDelegate.invokeTask (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:421:31) at Object.onInvokeTask (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:4763:33) at ZoneDelegate.invokeTask (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:420:36) at Zone.runTask (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:188:47) at drainMicroTaskQueue (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:595:35) at ZoneTask.invokeTask (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:500:21) at Server.ZoneTask.invoke (C:\mynodeprojects\mean_project_start\node_modules\zone.js\dist\zone-node.js:485:48) rejection: ReferenceError: navigator is not defined at getOS (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\core\bundles\ngx-share-core.umd.js:548:78) at new ShareButtons (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\core\bundles\ngx-share-core.umd.js:416:19) at ShareButtonsFactory (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\button\bundles\ngx-share-button.umd.js:137:12) at _callFactory (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10948:20) at _createProviderInstance$1 (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10900:26) at resolveNgModuleDep (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10882:17) at NgModuleRef_.get (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12119:16) at resolveDep (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12609:45) at createClass (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12471:29) at createDirectiveInstance (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12316:37), promise: ZoneAwarePromise { __zone_symbol__state: 0, __zone_symbol__value: ReferenceError: navigator is not defined at getOS (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\core\bundles\ngx-share-core.umd.js:548:78) at new ShareButtons (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\core\bundles\ngx-share-core.umd.js:416:19) at ShareButtonsFactory (C:\mynodeprojects\mean_project_start\node_modules\@ngx-share\button\bundles\ngx-share-button.umd.js:137:12) at _callFactory (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10948:20) at _createProviderInstance$1 (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10900:26) at resolveNgModuleDep (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:10882:17) at NgModuleRef_.get (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12119:16) at resolveDep (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12609:45) at createClass (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12471:29) at createDirectiveInstance (C:\mynodeprojects\mean_project_start\node_modules\@angular\core\bundles\core.umd.js:12316:37) }, ### Desired functionality Not to see any errors when running in a server side rendered environment. ### Mention any other details that might be useful none " "__label__enhancement the fact that the ""im back"" command stresses the c and k but not the a annoys me it says ""baccccckkk"" what is that bs who stresses consonants like that not only that u have the kkk in there and i call discrimination ""baaaaaaack"" or be a pleb" __label__bug Aeotec Smart Switch 6 not registering power consumption I have the UK version of the Aeotec Smart Switch 6 and it always shows in the UI as 0W of power consumption (model ZW096-C07). ![screen shot 2018-01-26 at 18 44 28](https://user-images.githubusercontent.com/552417/35455263-27da5458-02c9-11e8-954f-d8662c8b8922.png) "__label__bug Fix login screen <!-- File a GitHub issue only for bugs or feature requests related to the code **in this repository**. For other topics you can get more information in the README file. --> ### Observed Results: <!-- This could be a description, error output, steps to reproduce, a feature missed, etc. --> Error trying to log in ![image_2018-02-09_11-33-15](https://user-images.githubusercontent.com/19965590/36035905-bb76b2c2-0d8e-11e8-8296-81352f730769.png) ### Expected behavior: Login without any inconvenience <!-- What did you expect to happen? --> " "__label__question Type interface failure Hi @ravidsrk I'm trying to work with queries and this is what I get at every attempt: <img width=""700"" alt=""screen shot 2018-02-06 at 19 24 50"" src=""https://user-images.githubusercontent.com/33692877/35877100-a57c70ae-0b74-11e8-949c-ca79b2f4ebbe.png""> [Here's my class declaration](https://gist.github.com/nikitagudkovs/9d737b1881c925e5927ff2fee395276e). Thank you in advance!" __label__enhancement Rebuild raspbian distro for stretch w/ 8GiB cards Currently using wheezy and only 4GiB of the card. "__label__enhancement Add an option to toggle the context menu entry As [I've mentioned in another issue](https://github.com/mos3abof/firefox-power-close/issues/2#issuecomment-94758710), it's easy to implement add-on preferences in the add-on manager. Please add a checkbox to enable/disable the ""Close all tabs from this domain"" context menu entry (and any new ones if you add more things to the context menu). In the mean time, users can use the [Menu Wizard extension](https://addons.mozilla.org/firefox/addon/s3menu-wizard/) as a workaround to hide whatever context menu entries they don't need. " "__label__enhancement Documenter le code **Tous ces points comptent dans la note final !** ### Docstring Pour remplir toutes les exigences il est indispensable de commenter toutes les fonctions avec une docstring: ```python def fonction(test): """"""Une fonction de test qui ne fait pas grand chose"""""" print (test) ``` La docstring est un résumé général de chaque fonction. ### Commentaires Dans les morceaux de codes longs et peu clair, il faut des commentaires (pas besoin de commenter chaque ligne si elle n'est pas intéressante) ### Noms de fonctions / variables Faut se mettre d'accord sur le schéma de nommage des fonctions / variables. ```python def petitGrand() def separes_avec_underscore() def toutenminuscule() ``` De manière générale il est fortement déconseillé d'utiliser des caractères spéciaux (comme les accents) dans le nommage d'objets. ### Orthographe Le niveau de français compte lui aussi dans la note 😉 " __label__enhancement Please don’t drag in Spring Boot started Web It breaks in a Spring Webflux world https://github.com/spring-cloud/spring-cloud-stream/blob/1.3.x/spring-cloud-stream/pom.xml#L21 "__label__bug Test plugins are not copied after mvn clean When running `mvn clean install` the elasticsearch plugins are not copied to the `target` directory. The problem is that when running `mvn clean`, the `clean` is ran after the evaluation of the maven profiles. Because the file was existing, the profile is not activated. " __label__enhancement Check the patterns used by this repositories Check any good pattern that we can use at Flare from this repositories. - https://github.com/bketelsen/ngp - https://github.com/bketelsen/ngc A must is the goreleaser. "__label__bug Inconsistent message read status on Chans tab Hello. When I read the message received from chan in All accounts -> inbox on tab Messages and then switch to Chans tab I see that message still drawn with bold font, like unread." __label__bug Add missing babel-core dependency rollup-plugin-babel has babel-core as peer-dependency. However rlb does not list it as a dependency. It should be fixed. "__label__bug Unable to remove a specific user-created preset in the Handbrake GUI anymore. ### Description of problem or feature request Unable to remove a specific user-created preset in the Handbrake GUI anymore. This was support by the current stable build of Handbrake. ### Steps to reproduce the problem N/A ### HandBrake version (e.g., 1.0.0) Version 20180128113848-eb78c4a-master (2018012901) ### Operating system and version (e.g., Ubuntu 16.04 LTS, macOS 10.3 High Sierra, Windows 10 Creators Update) macOS High Sierra ### Error message text or screenshot There is no remove button for the presets in the current version of Handbrake, nor the related menus. ![image](https://user-images.githubusercontent.com/3164826/35531625-be2a9544-04f4-11e8-9129-61e22c0b6e89.png) " "__label__bug unstable build caused by UT005071 I have a test using Ersatz which is working great when executed in isolation but on the CI or within test suite it fails with following. Any suggestion what can go wrong - using `1.5.0:safe@jar` ``` 15:04:34.261 [Test worker] INFO ersatz.xnio - XNIO version 3.3.8.Final 15:04:34.301 [Test worker] INFO com.jcabi.manifests.Manifests - 53 attributes loaded from 56 stream(s) in 16ms, 53 saved, 739 ignored: [""Ant-Version"", ""Archiver-Version"", ""Bnd-LastModified"", ""Build-Jdk"", ""Built-By"", ""Built-Date"", ""Bundle-ClassPath"", ""Bundle-Description"", ""Bundle-DocURL"", ""Bundle-License"", ""Bundle-ManifestVersion"", ""Bundle-Name"", ""Bundle-RequiredExecutionEnvironment"", ""Bundle-SymbolicName"", ""Bundle-Vendor"", ""Bundle-Version"", ""Created-By"", ""DynamicImport-Package"", ""Eclipse-BuddyPolicy"", ""Embed-Dependency"", ""Export-Package"", ""Extension-Name"", ""Implementation-Build-Date"", ""Implementation-Title"", ""Implementation-URL"", ""Implementation-Vendor"", ""Implementation-Vendor-Id"", ""Implementation-Version"", ""Import-Package"", ""JCabi-Build"", ""JCabi-Date"", ""JCabi-Version"", ""Main-Class"", ""Main-class"", ""Manifest-Version"", ""Maven-Artifact-Id"", ""Maven-Group-Id"", ""Maven-Version"", ""Originally-Created-By"", ""Package"", ""Private-Package"", ""Provide-Capability"", ""Require-Capability"", ""Specification-Title"", ""Specification-Vendor"", ""Specification-Version"", ""Time-Zone-Database-Version"", ""Tool"", ""X-Compile-Source-JDK"", ""X-Compile-Target-JDK"", ""X-Git-Hash"", ""build-time"", ""provider""] 15:04:34.308 [Test worker] WARN io.sentry.dsn.Dsn - *** Couldn't find a suitable DSN, Sentry operations will do nothing! See documentation: https://docs.sentry.io/clients/java/ *** 15:04:34.313 [Test worker] INFO io.sentry.DefaultSentryClientFactory - Using noop to send events. 15:04:34.401 [Test worker] INFO ersatz.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final 15:04:35.329 [XNIO-1 task-1] ERROR ersatz.undertow.request - UT005071: Undertow request failed HttpServerExchange{ GET /api/me/accounts/summary request {Authorization=[Bearer TeddyTheBear], User-Agent=[Vert.x-WebClient/3.5.0], Host=[localhost:52998]} response {}} java.lang.NullPointerException: null at ersatz.undertow.io.BlockingSenderImpl.send(BlockingSenderImpl.java:94) at ersatz.undertow.io.BlockingSenderImpl.send(BlockingSenderImpl.java:117) at com.stehno.ersatz.ErsatzServer.send(ErsatzServer.groovy:494) at com.stehno.ersatz.ErsatzServer.access$0(ErsatzServer.groovy) at com.stehno.ersatz.ErsatzServer$1.handleRequest(ErsatzServer.groovy:370) at ersatz.undertow.server.handlers.HttpTraceHandler.handleRequest(HttpTraceHandler.java:70) at ersatz.undertow.server.handlers.encoding.EncodingHandler.handleRequest(EncodingHandler.java:66) at ersatz.undertow.server.Connectors.executeRootHandler(Connectors.java:332) at ersatz.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:812) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:744) ```" "__label__bug Missing ""audio"" icon in Dolphin's ""Search"" section of sidebar It's evident expecially at >= 32px size, but it can be noticed also at 22 and 16. The icon is missing, and it falls back to breeze. ![screenshot_20180201_143958](https://user-images.githubusercontent.com/2348771/35681548-031a4d6e-075e-11e8-9327-0abe60ff63cb.png) " __label__bug Mac installer not working on Sierra 10.12.6 - v0.2.4-beta From a user at Yale: I have a macOS Sierra Version 10.12.6. I was able to unzip the folder and install El Maven. (screenshot attached) After the installation was complete I tried to open the application and then I got this message: Check with the developer to make sure El_Maven_v0.2.4-beta works with this version of macOS. You may need to reinstall the application. Be sure to install any available updates for the application and macOS. (screenshot attached) ![1516905646341](https://user-images.githubusercontent.com/22666033/35440104-f4a9e8dc-02c3-11e8-96aa-a6cccc7d1355.jpg) "__label__question How to encrypted different stream with different keys using Widevine? ## System info **Operating System**: Ubunut 17.10 **Shaka Packager Version**: latest release I see nothing in https://google.github.io/shaka-packager/html/tutorials/widevine.html about different stream with different keys, as is explained in the Raw Key section using `--keys` Only way I can think to do it is to demux the A/V streams and encrypt each one with a different key? Then combine with mpd_generator, which the developers of this project say they want to remove and don't know of good use cases for. Are there examples of using widevine with a `--keys` equivalent?" "__label__enhancement Versioning for Integration of eTraGo and eDisGo Currently the interface between eTraGo and eDisgo works only via the database (see: [specs.py](https://github.com/openego/eGo/blob/features/specs/ego/tools/specs.py)). In order to truly integrate both programs into eGo, some version issues need to be solved: [eTraGo install requirements](https://github.com/openego/eTraGo/blob/dev/setup.py) [eDisGo install requirements](https://github.com/openego/eDisGo/blob/dev/setup.py) Most important seem to be 1) PyPSA 2) Pandas and apparently 3) egoio" "__label__bug PubGears Unit Tests Fail on IE ## Type of issue Bug ## Description This has been happening for a long time... but I found the root cause while working on #1355, after fixing the source-maps so that I could see line numbers. The PubGears unit tests use `CustomEvent`, which [isn't supported on IE](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent). These test failures make Prebid releases harder to validate, and prevent us from automating them. ## Failed test output ``` 5) should call bidManager.addBidResponse() when bid received PubGearsAdapter bids received TypeError: Object doesn't support this action at Anonymous function (webpack:///test/spec/modules/pubgearsBidAdapter_spec.js:202:6 <- test/spec/modules/pubgearsBidAdapter_spec.js:2615:7) 6) should send correct bid response object when receiving onBidResponse event PubGearsAdapter bids received TypeError: Object doesn't support this action at Anonymous function (webpack:///test/spec/modules/pubgearsBidAdapter_spec.js:238:6 <- test/spec/modules/pubgearsBidAdapter_spec.js:2651:7) 7) should send $0 bid as no-bid response PubGearsAdapter bids received TypeError: Object doesn't support this action at Anonymous function (webpack:///test/spec/modules/pubgearsBidAdapter_spec.js:276:6 <- test/spec/modules/pubgearsBidAdapter_spec.js:2689:7) ``` " "__label__enhancement Subscribe to collection # Finalized Specification ## Precondition: The user is logged-in ## Course of Events: a) add subscriptions - user selects a collection - user chooses ""Collection"" -> ""Subscribe to"" - user confirms dialog, e.g. `By subscribing to this collection you will receive automatic email notification if items are changed or new items are created. Are you sure you want to subscribe to this collection? Cancel Subscribe` - user returns to previous screen and is notified that the operation has been executed (green message) b) cancel subscriptions - user clicks on its name to open user profile - in the area ""User Subscriptions"" a list of collections is displayed - user requests to end a subscription by clicking the x/delete/trash button next to collection name - user confirms dialog - user returns to previous screen and is notified that the operation has been executed (green message) c) handling subscriptions - once a day, the system checks all collections - in case of a relevant change, the system will send a summary email to all users with a current subscription, see below. - ""relevant changes"" have been defined as: item upload, file modification/update, item move into collection - ""all users with a current subscription"": may include the user which triggered the event ``` To: [User email] Subject: [[Instance Name]] Summary to your collection subscriptions Dear [User firstname] [User lastname], please find a list of changes for [Instance Name] below: Collection [Collection Name], link to collection New files: * [File name], link to item * [File name], link to item Changed files: * [File name], link to item * [File name], link to item Collection [Collection Name], link to collection New files: * [File name], link to item * [File name], link to item ... To manage your subscriptions, please visit your profile page, link to profile page ``` ## Event and action This table lists what action should happen by each event related to the collection subscription Event | Action ------------ | ------------- Upload File | Notify user Change File | Notify user Move Item in collection | Notify user Delete Collection | Remove subscription Discard Collection | Remove subscription Unshare Collection (1) | Deactivate subscription Remove User from User group (1) | Deactivate subscription (1) Valid if the user who subscribed to the collection has no read rights for the collection. If the user has still read rights (for instance the collection is public), then the subscription stays active" __label__bug Colors of the websites. Here we need to change the current colors to gdg douala own colors. "__label__question Can I change default AVAudioSessionCategoryOptions? I want to set `mixWithOthers` of AVAudioSessionCategoryOptions, but sdk set without options. If I set options by myself, SDK override this." "__label__enhancement Short descriptions It would be useful to have some more detailed descriptions for each pattern. I would put them in the comments above the code. The main questions would be: - What the pattern is? - What the current example does? - Where can the pattern be used practically (or is used in known open-source projects)? Some of the patterns have comments or are obvious, but not all of them. Also, I think, that people with different computer science knowledge will check them, so it would be valuable to describe the patterns to them." "__label__bug Commands for moving windows between adjacent spaces not in preferences ## System - **Amethyst version**: 0.11.4 - **macOS version**: 10.3.1 ## What's the problem? The commands for throwing windows to spaces left and right exist, but are not in the preferences window. ## How can it be reproduced? ## What applications are involved? ## Has anything fixed it, even temporarily? ## dotfile (if you have one) ``` { } ``` ## Screenshots [Trello Card](https://trello.com/c/yRYmHHHD/297-amethyst-commands-for-moving-windows-between-adjacent-spaces-not-in-preferences)" "__label__question recommended applications/locations for adding droplet /surface -tension related codes/files, @pooyan-dadvand Greetings and very good day, As you are aware that Dr. Alex was using in his droplet/surface-tension codes both Lagrangian and Lagrangian-Eulerian approaches, and he added most of the related codes/files inside kratos-fluid-dynamic applications; and as we would like now to work on and extend the existing model, so we would like to start with getting your recommendation please about the suitable application/location for adding the existing droplet codes and that will fit with the latest kratos structure. For example, for the Lagrangian approach, do we need to create new-element file inside the ULF applications instead of using (.vms). Also, what about when using Lagrangian-Eulerian together. Here, I would like also to share with you the step-by-step procedure that was initially recommended and shared by Dr. @Alex, (I only modified very minor commands in some files (that I think) to fit with the existing kratos version). First, ”droplet folder” was created inside ”Kratos/Applications/FluidDynamic Applications/test”. This folder includes the following four files: • ”Lap young lagr.py” - the python script that runs the example. ``` from __future__ import print_function, absolute_import, division # # import the configuration data as read from the GiD import ProjectParameters import problem_settings def PrintResults(model_part): print(""Writing results. Please run Gid for viewing results of analysis."") for variable_name in ProjectParameters.nodal_results: gid_io.WriteNodalResults(variables_dictionary[variable_name],model_part.Nodes,time,0) for variable_name in ProjectParameters.gauss_points_results: gid_io.PrintOnGaussPoints(variables_dictionary[variable_name],model_part,time) ################################################################## ################################################################## #setting the domain size for the problem to be solved domain_size = ProjectParameters.domain_size ################################################################## ################################################################## import sys sys.path.append(ProjectParameters.kratos_path) from KratosMultiphysics import * from KratosMultiphysics.IncompressibleFluidApplication import * from KratosMultiphysics.FluidDynamicsApplication import * from KratosMultiphysics.ExternalSolversApplication import * from KratosMultiphysics.MeshingApplication import * from KratosMultiphysics.ULFApplication import * from KratosMultiphysics.StructuralApplication import * from KratosMultiphysics.PFEMApplication import * from KratosMultiphysics.ALEApplication import * ## defining variables to be used variables_dictionary = {""PRESSURE"" : PRESSURE, ""VELOCITY"" : VELOCITY, ""REACTION"" : REACTION, ""DISTANCE"" : DISTANCE, ""AUX_VEL"" : AUX_VEL, ""DISPLACEMENT"" : DISPLACEMENT, ""IS_INTERFACE"" : IS_INTERFACE, ""IS_STRUCTURE"" : IS_STRUCTURE, ""VISCOUS_STRESSX"": VISCOUS_STRESSX, ""VISCOUS_STRESSY"": VISCOUS_STRESSY, ""IS_WATER"": IS_WATER, ""DENSITY"": DENSITY, ""VISCOSITY"": VISCOSITY} #defining a model part for the fluid lagrangian_model_part = ModelPart(""LagrangianPart""); SolverType=problem_settings.SolverType if (SolverType==""Incompressible_Modified_FracStep""): fluid_only_model_part = ModelPart(""FluidOnlyPart""); lagrangian_model_part.AddNodalSolutionStepVariable(DISTANCE) lagrangian_model_part.AddNodalSolutionStepVariable(DISPLACEMENT) lagrangian_model_part.AddNodalSolutionStepVariable(VELOCITY) lagrangian_model_part.AddNodalSolutionStepVariable(VISCOSITY) lagrangian_model_part.AddNodalSolutionStepVariable(DENSITY) lagrangian_model_part.AddNodalSolutionStepVariable(BODY_FORCE) lagrangian_model_part.AddNodalSolutionStepVariable(IS_FREE_SURFACE) lagrangian_model_part.AddNodalSolutionStepVariable(VISCOUS_STRESSX) lagrangian_model_part.AddNodalSolutionStepVariable(VISCOUS_STRESSY) lagrangian_model_part.AddNodalSolutionStepVariable(AUX_VEL) lagrangian_model_part.AddNodalSolutionStepVariable(CONTACT_ANGLE) lagrangian_model_part.AddNodalSolutionStepVariable(IS_WATER) ############################################# ##importing the solvers needed SolverType = ProjectParameters.SolverType ## Choosing element type for lagrangian_model_part element_type = problem_settings.lagrangian_element import vms_monolithic_solver as solver_lagr SolverSettings = ProjectParameters.FluidSolverConfiguration solver_lagr = import_solver(SolverSettings) solver_lagr.AddVariables(lagrangian_model_part, SolverSettings) import mesh_solver mesh_solver.AddVariables(lagrangian_model_part) compute_reactions=False #reading the fluid part # initialize GiD I/O if ProjectParameters.GiDPostMode == ""Binary"": gid_mode = GiDPostMode.GiD_PostBinary elif ProjectParameters.GiDPostMode == ""Ascii"": gid_mode = GiDPostMode.GiD_PostAscii elif ProjectParameters.GiDPostMode == ""AsciiZipped"": gid_mode = GiDPostMode.GiD_PostAsciiZipped else: print(""Unknown GiD post mode, assuming Binary"") gid_mode = GiDPostMode.GiD_PostBinary if ProjectParameters.GiDWriteMeshFlag == True: deformed_mesh_flag = WriteDeformedMeshFlag.WriteDeformed else: deformed_mesh_flag = WriteDeformedMeshFlag.WriteUndeformed if (ProjectParameters.VolumeOutput == True): if ProjectParameters.GiDWriteConditionsFlag == True: write_conditions = WriteConditionsFlag.WriteConditions else: write_conditions = WriteConditionsFlag.WriteElementsOnly else: write_conditions = WriteConditionsFlag.WriteConditions if ProjectParameters.GiDMultiFileFlag == ""Single"": multifile = MultiFileFlag.SingleFile elif ProjectParameters.GiDMultiFileFlag == ""Multiples"": multifile = MultiFileFlag.MultipleFiles else: print(""Unknown GiD multiple file mode, assuming Single"") multifile = MultiFileFlag.SingleFile input_file_name = ""drop"" # ""drop_square_h010"" | ""drop_square_h0075"" | ""drop_square_h0050"" | ""drop_square_h0025"" | ""drop_square_h0010"" | ""drop_square_h0005"" gid_io = GidIO(input_file_name,gid_mode,multifile,deformed_mesh_flag, write_conditions) #READ LAGRANGIAN PART model_part_io_structure = ModelPartIO(input_file_name) model_part_io_structure.ReadModelPart(lagrangian_model_part) compute_reactions=0 if(element_type == ""ulf""): ulf_fluid.AddDofs(lagrangian_model_part, compute_reactions) elif(element_type == ""VMS""): solver_lagr.AddDofs(lagrangian_model_part, SolverSettings) mesh_solver.AddDofs(lagrangian_model_part) #setting the limits of the bounding box box_corner1 = Vector(3); box_corner1[0]=problem_settings.bounding_box_corner1_x; box_corner1[1]=problem_settings.bounding_box_corner1_y; box_corner1[2]=problem_settings.bounding_box_corner1_z; box_corner2 = Vector(3); box_corner2[0]=problem_settings.bounding_box_corner2_x; box_corner2[1]=problem_settings.bounding_box_corner2_y; box_corner2[2]=problem_settings.bounding_box_corner2_z; #here we write the convergence data.., outstring2 = ""convergence_info.txt"" outputfile1 = open(outstring2, 'w') add_nodes=problem_settings.adaptive_refinement bulk_modulus=problem_settings.bulk_modulus density=problem_settings.density FSI=problem_settings.FSI eul_model_part = 0 gamma = 1.0 #surface tension coefficient [N m-1] contact_angle = 130 #contact angle [deg] lag_solver = solver_lagr.CreateSolver(lagrangian_model_part, SolverSettings, eul_model_part, gamma, contact_angle) # Mesh solver: reform_dofs_at_each_step = False mesh_solver = mesh_solver.MeshSolver(lagrangian_model_part, 2, reform_dofs_at_each_step) pDiagPrecond = DiagonalPreconditioner() mesh_solver.linear_solver = CGSolver(1e-3, 300, pDiagPrecond) mesh_solver.time_order = 2 mesh_solver.Initialize() mesh_solver.solver.SetEchoLevel(0) print(""mesh solver created"") lag_solver.alpha_shape = problem_settings.alpha_shape; lag_solver.echo_level = 2; lag_solver.Initialize() print(""lagrangian solver created"") lagrangian_model_part.SetBufferSize(3) for node in lagrangian_model_part.Nodes: node.SetSolutionStepValue(DENSITY,0, 1.0) node.SetSolutionStepValue(VISCOSITY,0, 1.0) node.SetSolutionStepValue(BODY_FORCE_X, 0, 0.0) node.SetSolutionStepValue(BODY_FORCE_Y, 0, 0.0) node.SetSolutionStepValue(PRESSURE,0, 0.0) node.SetSolutionStepValue(IS_FLUID,0, 1.0) if (node.GetSolutionStepValue(IS_BOUNDARY) != 0.0): node.SetSolutionStepValue(IS_FREE_SURFACE,0, 1.0) node.SetSolutionStepValue(IS_INTERFACE,0, 1.0) node.SetSolutionStepValue(FLAG_VARIABLE,0, 1.0) ########################################################################################################## Multifile = True # Initialize .post.list file (GiD postprocess list) f = open(ProjectParameters.problem_name+'.post.lst','w') f.write('Multiple\n') ################################################################ # Stepping and time settings Dt = ProjectParameters.Dt Nsteps = ProjectParameters.nsteps final_time = ProjectParameters.max_time output_time = ProjectParameters.output_time time = ProjectParameters.Start_time out = 0 step = 0 while(time <= final_time): time = time + Dt step = step + 1 lagrangian_model_part.CloneTimeStep(time) print(""LINEAR SOLVER IS ------------------------------------------------------>"", ProjectParameters.Monolithic_Linear_Solver) print(""STEP = "", step) print(""TIME = "", time) if(step >= 3): lag_solver.Solve() mesh_solver.Solve() ################################################## ################################################## if(output_time <= out): out = 0 gid_io.FinalizeResults() f.write(ProjectParameters.problem_name+'_'+str(time)+'.post.bin\n') res_name1 = str(""water"") gid_io.ChangeOutputName(res_name1) gid_io.InitializeMesh( time ); gid_io.WriteNodeMesh((lagrangian_model_part).GetMesh()); gid_io.WriteMesh((lagrangian_model_part).GetMesh()); gid_io.FinalizeMesh(); gid_io.InitializeResults(time, (lagrangian_model_part).GetMesh()); gid_io.WriteNodalResults(CURVATURE,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(DISPLACEMENT,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(IS_BOUNDARY,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(IS_FREE_SURFACE,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(IS_INTERFACE,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(FLAG_VARIABLE,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(FORCE,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(NORMAL,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(PRESSURE,lagrangian_model_part.Nodes,time,0) gid_io.WriteNodalResults(VELOCITY,lagrangian_model_part.Nodes,time,0) gid_io.Flush() gid_io.FinalizeResults(); out = out + Dt if Multifile: f.close() else: gid_io.FinalizeResults() ``` • ”problem settings.py” - a python file containing some settings: ``` domain_size = 2 #dimension of problem - 2 for 2D, 3 for 3D FSI = 0.00000e+00 compute_reactions = 0.00000e+00 Dt = 1.00000e-04 max_time = 1.00000e+00 output_step = 1.00000e-04 alpha_shape = 1.60000e+00 erase_nodes = 1.00000e+00 adaptive_refinement = 1.00000e+00 delete_nodes_close_to_wall = 1.00000e+00 bulk_modulus =-1.0000e+03 density = 1.00000e+03 bounding_box_corner1_x = -1.00000e+00 bounding_box_corner1_y = -1.00000e+00 bounding_box_corner1_z = -1.00000e+00 bounding_box_corner2_x = 1.01000e+00 bounding_box_corner2_y = 1.01000e+00 bounding_box_corner2_z = 1.01000e+00 lagrangian_nodes_inlet = 0.00000e+00 SolverType = ""Quasi_Inc_Constant_Pressure"" lagrangian_element = ""VMS"" #lagrangian_element = ""ulf"" # Declare Python Variables problem_name = 'drop' problem_path=""/home/elaf/Kratos/applications/FluidDynamicsApplication/tests/drop"" kratos_path = '/home/elaf' ``` • ”ProjectParameters.py” - another python file containing settings about solver tolerances, total simulation, time, and time step. ``` domain_size = 2 SolverType = ""monolithic_solver_eulerian"" #SolverType2 = ""FractionalStep"" class FluidSolverConfiguration: solver_type = ""vms_monolithic_solver"" domain_size = 2 TurbulenceModel = ""None"" # Monolithic solver class linear_solver_config: solver_type = ""Super LU"" scaling = False #convergence criteria settings velocity_relative_tolerance = 1E-4 velocity_absolute_tolerance = 1E-6 pressure_relative_tolerance = 1E-4 pressure_absolute_tolerance = 1E-6 divergence_cleareance_step = 1 #other solver settings oss_switch = 0 compute_reactions = True time_order = 2 predictor_corrector = False dynamic_tau = 0.1 max_iteration = 20 laplacian_form = 2 eulerian_model_part = 0 # Monolithic solver Monolithic_Linear_Solver =""MixedUP""#""BiConjugate gradient stabilized""# Monolithic_Iterative_Tolerance = 1E-4 Monolithic_Solver_Max_Iteration = 5000 Monolithic_Preconditioner_type = ""ILU0""#""Diagonal"" Velocity_Linear_Solver=""BiConjugate gradient stabilized"" Pressure_Linear_Solver=""Conjugate gradient"" Velocity_Preconditioner_type=""ILU0"" Pressure_Preconditioner_type=""ILU0"" Velocity_Iterative_Tolerance=1E-6 Pressure_Iterative_Tolerance=1E-3 Velocity_Solver_Max_Iteration = 5000 Pressure_Solver_Max_Iteration = 1000 TurbulenceModel = ""None"" velocity_relative_tolerance = 1E-3 velocity_absolute_tolerance = 1E-5 pressure_relative_tolerance = 1E-2 pressure_absolute_tolerance = 1E-4 time_order = 2 predictor_corrector = False max_iterations = 10 laplacian_form = 2 AutomaticDeltaTime = ""Fixed"" divergence_cleareance_step = 10 Dt = 0.01 Start_time = 0.0 max_time = 2.00 nsteps = 100 use_dt_in_stabilization = 0.10 use_orthogonal_subscales = 0 Calculate_reactions = True groups_dictionary = { ""Fluid"" : 1, } output_time = 0.01 output_step = 10 VolumeOutput = True nodal_results=[""VELOCITY"",""PRESSURE""] gauss_points_results=[] GiDPostMode = ""Binary"" GiDWriteMeshFlag = True GiDWriteConditionsFlag = True # Add the following line if using vms_monolithic_solver for lagrangian_model_part GiDWriteParticlesFlag = False GiDMultiFileFlag = ""Multiples"" #problem_name=""square_circ3"" #problem_path=""/home/alex/Examples_kratos/ALEX/channel30mm4_vms.gid"" kratos_path=""home/elaf/Kratos"" ``` • ”drop.mdpa” - the file containing the mesh information. (please you may kindly find it in as attached) Second step was defining the new required variables as: • in ”kratos/kratos/includes/variables.h”: here where the new variables were created (starting from line 445 in attached (variables.h)) • in ”kratos/kratos/python/add containers to python.cpp”: here where the new variables were registered in python. • in ”kratos/kratos/sources/variables.cpp”: similar to the previous step, here where each newly added variable created and registered. Third step was modifying the ”vms monolithic solver.py” python solver file located in ”FluidDynamicsApplication/python scritps” to include the new variables and solver setting. Also to include the following: ``` if(eul model part == 0): self.move mesh strategy = 2 self.MoveMeshFlag = True ``` ”eul model part” is a boolean that was set in the python script to run the example (in this case ”Lap young lagr.py”) to tell Kratos that this geometry is Lagrangian (the mesh is moving). Fourth step was to add the new governor equations functions for the surface tension force in the ”element” file. For the ”FluidDynamic application” in Kratos, the governing equations are implemented in the following files: • kratos/applications/FluidDynamicsApplication/custom elements/vms.cpp • kratos/applications/FluidDynamicsApplication/custom elements/vms.h All new functions for the surface tension force are implemented in the ”vms.h” file, and also including the surface tension effects function ”ApplySurfaceTensionContribution” codes (that is in between the comment ”Surface tension contribution” and ”Viscous stress”) as it contains the necessary commands to detect if the current element is on the surface. ``` // Surface tension contribution int k = 0; if(TDim < 3) { array_1d<double,3> node_indx; node_indx[0] = 0.0; node_indx[1] = 0.0; node_indx[2] = 0.0; int node_indx_wrong = 5; for(unsigned int iNode = 0; iNode < TNumNodes; ++iNode) { if(this->GetGeometry()[iNode].FastGetSolutionStepValue(CURVATURE) != 0.0) k++; if(this->GetGeometry()[iNode].FastGetSolutionStepValue(IS_BOUNDARY) < 0.1) node_indx_wrong = iNode; } if(k > 2 && node_indx_wrong != 5) { this->GetGeometry()[node_indx_wrong].FastGetSolutionStepValue(CURVATURE) = 0.0; } k = 0; for(unsigned int iNode = 0; iNode < TNumNodes; ++iNode) { if(this->GetGeometry()[iNode].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0 || this->GetGeometry()[iNode].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0) { node_indx[k] = iNode; k++; } } if(k > 1) this->ApplySurfaceTensionContribution(rDampingMatrix, rRightHandSideVector, node_indx, k, rCurrentProcessInfo); } else { array_1d<double,4> node_indx; node_indx[0] = 0.0; node_indx[1] = 0.0; node_indx[2] = 0.0; node_indx[3] = 0.0; int node_indx_wrong = 5; for(unsigned int iNode = 0; iNode < TNumNodes; ++iNode) { if(this->GetGeometry()[iNode].FastGetSolutionStepValue(MEAN_CURVATURE) != 0.0) k++; if(this->GetGeometry()[iNode].FastGetSolutionStepValue(IS_BOUNDARY) < 0.1) node_indx_wrong = iNode; } if(k > 2 && node_indx_wrong != 5) { this->GetGeometry()[node_indx_wrong].FastGetSolutionStepValue(MEAN_CURVATURE) = 0.0; } k = 0; for(unsigned int iNode = 0; iNode < TNumNodes; ++iNode) { if(this->GetGeometry()[iNode].FastGetSolutionStepValue(IS_FREE_SURFACE) > 0.999 || this->GetGeometry()[iNode].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0) { node_indx[k] = iNode; k++; } } // if(k >= 3) // this->ApplySurfaceTensionContribution3D(rDampingMatrix, rRightHandSideVector, node_indx, k, rCurrentProcessInfo); } // Viscous stress k = 0; for(unsigned int iNode = 0; iNode < TNumNodes; ++iNode) { if(this->GetGeometry()[iNode].FastGetSolutionStepValue(IS_WATER) == 0.0) { k++; } } if(TDim < 3 && k > 2) this->AddViscousStress2D(); // Now calculate an additional contribution to the residual: r -= rDampingMatrix * (u,p) VectorType U = ZeroVector(LocalSize); int LocalIndex = 0; for (unsigned int iNode = 0; iNode < TNumNodes; ++iNode) { array_1d< double, 3 > & rVel = this->GetGeometry()[iNode].FastGetSolutionStepValue(VELOCITY); for (unsigned int d = 0; d < TDim; ++d) // Velocity Dofs { U[LocalIndex] = rVel[d]; ++LocalIndex; } U[LocalIndex] = this->GetGeometry()[iNode].FastGetSolutionStepValue(PRESSURE); // Pressure Dof ++LocalIndex; } noalias(rRightHandSideVector) -= prod(rDampingMatrix, U); } void FinalizeNonLinearIteration(ProcessInfo& rCurrentProcessInfo) override { } ``` and: ``` /// Add the surface tension term to the velocity contribution // ApplySurfaceTensionContribution(rDampingMatrix, rRightHandSideVector, node_indx, rCurrentProcessInfo); void ApplySurfaceTensionContribution(MatrixType& rDampingMatrix, VectorType& rRightHandSideVector, const array_1d< double, 3 >& node_indx, const int& k, const ProcessInfo& rCurrentProcessInfo) { const double gamma = rCurrentProcessInfo[SURFTENS_COEFF]; //surface tension coefficient between air and water [N m-1] double dt = rCurrentProcessInfo[DELTA_TIME]; double theta_s = rCurrentProcessInfo[CONTACT_ANGLE_STATIC]; double pi = 3.14159265359; theta_s = theta_s*pi/180.0; double sin_t = sin(theta_s); double cos_t = cos(theta_s); array_1d<double,2> m; //Clearing spurious curvatures: for(unsigned int i = 0; i < 3; i++){ if((this->GetGeometry()[i].FastGetSolutionStepValue(IS_BOUNDARY) == 0.0) || (this->GetGeometry()[i].FastGetSolutionStepValue(IS_FREE_SURFACE) == 0.0)) this->GetGeometry()[i].FastGetSolutionStepValue(CURVATURE) = 0.0; } //Flag counter to identify contact element: double flag_surf = 0.0; flag_surf += this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(IS_FREE_SURFACE); flag_surf += this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(IS_FREE_SURFACE); flag_surf += this->GetGeometry()[node_indx[2]].FastGetSolutionStepValue(IS_FREE_SURFACE); double flag_trip = 0.0; flag_trip += (this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0); flag_trip += (this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0); flag_trip += (this->GetGeometry()[node_indx[2]].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0); double flag_struct = 0.0; flag_struct += (this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(IS_STRUCTURE) != 0.0); flag_struct += (this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(IS_STRUCTURE) != 0.0); flag_struct += (this->GetGeometry()[node_indx[2]].FastGetSolutionStepValue(IS_STRUCTURE) != 0.0); int ii = 5; int jj = 6; int kk = 7; double avg_curv = 0.0; ////////////////////////////////////////////////////////////////////////////////////////// //Set the indexes as follows: // node ""ii"" -> triple point, if the element has one // node ""jj"" -> node with flag IS_FREE_SURFACE // node ""kk"" -> in elements with 3 nodes at the boundary: // - if ""ii"" is TRIPLE_POINT, ""kk"" has flag IS_STRUCTURE (besides IS_FREE_SURFACE) // - if there is no TRIPLE_POINT, ""kk"" is another IS_FREE_SURFACE node ////////////////////////////////////////////////////////////////////////////////////////// if(k < 3) //General element with two nodes at the interface { //Step to detect triple point. Node with index ii is TRIPLE_POINT, and node with index jj is IS_FREE_SURFACE ii = node_indx[0]; jj = node_indx[1]; if(flag_trip > 0 && (this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(TRIPLE_POINT))*1000 == 0.0) { ii = node_indx[1]; jj = node_indx[0]; } } else //Element with three nodes at the free surface OR one at free surface, one triple point and one at the structure { if(flag_trip == 0.0) //three nodes at interface { if(flag_struct == 0.0) { for(int i = 0; i < 3; i++) { avg_curv += 0.333333333333*(this->GetGeometry()[i].FastGetSolutionStepValue(CURVATURE)); } if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(CURVATURE) > avg_curv) { ii = node_indx[1]; jj = node_indx[2]; kk = node_indx[0]; } if(this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(CURVATURE) > avg_curv) { ii = node_indx[0]; jj = node_indx[2]; kk = node_indx[1]; } if(this->GetGeometry()[node_indx[2]].FastGetSolutionStepValue(CURVATURE) > avg_curv) { ii = node_indx[0]; jj = node_indx[1]; kk = node_indx[2]; } } else //first time step, TRIPLE_POINT has not been set yet, but the element has a TRIPLE_POINT { if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0) { jj = node_indx[0]; if(this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(CURVATURE) > 1.0) { ii = node_indx[1]; //TRIPLE_POINT kk = node_indx[2]; //IS_STRUCTURE } else { ii = node_indx[2]; //TRIPLE_POINT kk = node_indx[1]; //IS_STRUCTURE } } if(this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0) { jj = node_indx[1]; if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(CURVATURE) > 1.0) { ii = node_indx[0]; //TRIPLE_POINT kk = node_indx[2]; //IS_STRUCTURE } else { ii = node_indx[2]; //TRIPLE_POINT kk = node_indx[0]; //IS_STRUCTURE } } if(this->GetGeometry()[node_indx[2]].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0) { jj = node_indx[2]; if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(CURVATURE) > 1.0) { ii = node_indx[0]; //TRIPLE_POINT kk = node_indx[1]; //IS_STRUCTURE } else { ii = node_indx[1]; //TRIPLE_POINT kk = node_indx[0]; //IS_STRUCTURE } } } } else //Element has one node with TRIPLE_POINT { if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0) { ii = node_indx[0]; if(this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0) { jj = node_indx[1]; kk = node_indx[2]; //IS_STRUCTURE } else { jj = node_indx[2]; kk = node_indx[1]; //IS_STRUCTURE } } if(this->GetGeometry()[node_indx[1]].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0) { ii = node_indx[1]; if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0) { jj = node_indx[0]; kk = node_indx[2]; //IS_STRUCTURE } else { jj = node_indx[2]; kk = node_indx[0]; //IS_STRUCTURE } } if(this->GetGeometry()[node_indx[2]].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0) { ii = node_indx[2]; if(this->GetGeometry()[node_indx[0]].FastGetSolutionStepValue(IS_FREE_SURFACE) != 0.0) { jj = node_indx[0]; kk = node_indx[1]; } else { jj = node_indx[1]; kk = node_indx[0]; } } } } array_1d<double,2> An1; array_1d<double,2> An2; An1[0] = this->GetGeometry()[ii].FastGetSolutionStepValue(NORMAL_X); An1[1] = this->GetGeometry()[ii].FastGetSolutionStepValue(NORMAL_Y); double norm1 = sqrt(An1[0]*An1[0] + An1[1]*An1[1]); An1 /= norm1; An2[0] = this->GetGeometry()[jj].FastGetSolutionStepValue(NORMAL_X); An2[1] = this->GetGeometry()[jj].FastGetSolutionStepValue(NORMAL_Y); double norm2 = sqrt(An2[0]*An2[0] + An2[1]*An2[1]); An2 /= norm2; double x1 = this->GetGeometry()[ii].X(); double y1 = this->GetGeometry()[ii].Y(); double x2 = this->GetGeometry()[jj].X(); double y2 = this->GetGeometry()[jj].Y(); //vector x12 is the vector pointing from node 1 [ii] to node 2 [jj] array_1d<double,2> x12; x12[0] = x2 - x1; x12[1] = y2 - y1; double dl = sqrt(x12[0]*x12[0] + x12[1]*x12[1]); x12 /= dl; double curv1 = this->GetGeometry()[ii].FastGetSolutionStepValue(CURVATURE); double curv2 = this->GetGeometry()[jj].FastGetSolutionStepValue(CURVATURE); array_1d<double,2> norm_eq; //elemental variables for the laplacian boost::numeric::ublas::bounded_matrix<double,3,3> msWorkMatrix = ZeroMatrix(3,3); boost::numeric::ublas::bounded_matrix<double,3,2> msDN_Dx = ZeroMatrix(3,2); array_1d<double,3> msN = ZeroVector(3); //dimension = number of nodes double Area; GeometryUtils::CalculateGeometryData(this->GetGeometry(),msDN_Dx,msN,Area); // 3 by 3 matrix that stores the laplacian msWorkMatrix = 0.5 * gamma * dl * prod(msDN_Dx,trans(msDN_Dx)) * dt; //CSS: // boost::numeric::ublas::bounded_matrix<double,2,2> nmat_ii = ZeroMatrix(2,2); // boost::numeric::ublas::bounded_matrix<double,2,2> nmat_jj = ZeroMatrix(2,2); // boost::numeric::ublas::bounded_matrix<double,3,2> msDN_Ds = ZeroMatrix(3,2); // nmat_ii(0,0) = (1.0 - An1[0]*An1[0]); // nmat_ii(1,1) = (1.0 - An1[1]*An1[1]); // nmat_ii(1,0) = -An1[0]*An1[1]; // nmat_ii(0,1) = -An1[0]*An1[1]; // nmat_jj(0,0) = (1.0 - An2[0]*An2[0]); // nmat_jj(1,1) = (1.0 - An2[1]*An2[1]); // nmat_jj(1,0) = -An2[0]*An2[1]; // nmat_jj(0,1) = -An2[0]*An2[1]; // msDN_Ds(ii,0) = nmat_ii(0,0)*msDN_Dx(ii,0) + nmat_ii(0,1)*msDN_Dx(ii,1); // msDN_Ds(ii,1) = nmat_ii(1,0)*msDN_Dx(ii,0) + nmat_ii(1,1)*msDN_Dx(ii,1); // msDN_Ds(jj,0) = nmat_jj(0,0)*msDN_Dx(jj,0) + nmat_jj(0,1)*msDN_Dx(jj,1); // msDN_Ds(jj,1) = nmat_jj(1,0)*msDN_Dx(jj,0) + nmat_jj(1,1)*msDN_Dx(jj,1); //CSSv2: // msDN_Ds(ii,0) = msDN_Dx(ii,0) - An1[0]*(An1[0]*msDN_Dx(ii,0) + An1[1]*msDN_Dx(ii,1)); // msDN_Ds(ii,1) = msDN_Dx(ii,1) - An1[1]*(An1[0]*msDN_Dx(ii,0) + An1[1]*msDN_Dx(ii,1)); // msDN_Ds(jj,0) = msDN_Dx(jj,0) - An2[0]*(An2[0]*msDN_Dx(jj,0) + An2[1]*msDN_Dx(jj,1)); // msDN_Ds(jj,1) = msDN_Dx(jj,1) - An2[1]*(An2[0]*msDN_Dx(jj,0) + An2[1]*msDN_Dx(jj,1)); // msWorkMatrix = 0.5 * gamma * dl * prod(msDN_Ds,trans(msDN_Ds)) * dt; if(flag_trip == 0) { if(this->GetGeometry()[ii].FastGetSolutionStepValue(IS_STRUCTURE) == 0.0) { //CSF: rRightHandSideVector[3*ii] -= 0.5*gamma*curv1*An1[0]*dl; rRightHandSideVector[3*ii+1] -= 0.5*gamma*curv1*An1[1]*dl; //CSS: // rRightHandSideVector[3*ii] -= 0.5*gamma*dl*(nmat_ii(0,0)*msDN_Ds(ii,0) + nmat_ii(0,1)*msDN_Ds(ii,1)); // rRightHandSideVector[3*ii+1] -= 0.5*gamma*dl*(nmat_ii(1,0)*msDN_Ds(ii,0) + nmat_ii(1,1)*msDN_Ds(ii,1)); //Output force: this->GetGeometry()[ii].FastGetSolutionStepValue(FORCE_X) = -gamma*curv1*An1[0]*dl; this->GetGeometry()[ii].FastGetSolutionStepValue(FORCE_Y) = -gamma*curv1*An1[1]*dl; } } else { if (this->GetGeometry()[ii].FastGetSolutionStepValue(NORMAL_X) > 0.0) { m[0] = -cos_t; m[1] = sin_t; } else { m[0] = cos_t; m[1] = sin_t; } if(k < 3) { // if (x1 != this->GetGeometry()[ii].FastGetSolutionStepValue(TRIPLE_POINT)) if (this->GetGeometry()[ii].FastGetSolutionStepValue(TRIPLE_POINT) != 0.0) { double coef = 1.0; //MODEL 1 - contact angle condition with vector tangent to the surface: rRightHandSideVector[3*ii] -= coef*gamma*(m[0]-x12[0]); rRightHandSideVector[3*ii+1] -= coef*gamma*(m[1]-x12[1]); this->GetGeometry()[ii].FastGetSolutionStepValue(FORCE_X) = -coef*gamma*(m[0] - x12[0]); this->GetGeometry()[ii].FastGetSolutionStepValue(FORCE_Y) = -coef*gamma*(m[1] - x12[1]); //Wall friction force // double alfa = 1; // rRightHandSideVector[3*ii] -= alfa*(this->GetGeometry()[ii].FastGetSolutionStepValue(VELOCITY_X)); // Apply this if surface divergence theorem has been applied /* rRightHandSideVector[3*ii] += gamma*(m[0]+x12[0]); rRightHandSideVector[3*ii+1] += gamma*(m[1]+x12[1]); this->GetGeometry()[ii].FastGetSolutionStepValue(FORCE_X) = +gamma*(m[0] + x12[0]); this->GetGeometry()[ii].FastGetSolutionStepValue(FORCE_Y) = +gamma*(m[1] + x12[1]); */ // double dl_ii = this->GetGeometry()[ii].FastGetSolutionStepValue(NODAL_LENGTH); // boost::numeric::ublas::bounded_matrix<double,2,4> Dx12_Dx = ZeroMatrix(2,4); // // Dx12_Dx(0,0) = -1.0; // Dx12_Dx(1,1) = -1.0; // Dx12_Dx(2,0) = 1.0; // Dx12_Dx(3,1) = 1.0; // // boost::numeric::ublas::bounded_matrix<double,2,2> msprod1 = ZeroMatrix(2,2); // msprod1(0,0) = msN[ii]*Dx12_Dx(2*ii,0); // msprod1(1,1) = msN[ii]*Dx12_Dx(2*ii+1,1); // // boost::numeric::ublas::bounded_matrix<double,2,2> msprod2 = ZeroMatrix(2,2); // msprod2(0,0) = x12[0]*msDN_Dx(ii,0); // msprod2(0,1) = x12[1]*msDN_Dx(ii,0); // msprod2(1,0) = x12[0]*msDN_Dx(ii,1); // msprod2(1,1) = x12[1]*msDN_Dx(ii,1); // // boost::numeric::ublas::bounded_matrix<double,2,2> msprod = ZeroMatrix(2,2); // msprod(0,0) = 0.5*coef*gamma*dl*(msprod1(0,0)+msprod2(0,0))/dt; // msprod(1,0) = 0.5*coef*gamma*dl*(msprod1(1,0)+msprod2(1,0))/dt; // msprod(0,1) = 0.5*coef*gamma*dl*(msprod1(0,1)+msprod2(0,1))/dt; // msprod(1,1) = 0.5*coef*gamma*dl*(msprod1(1,1)+msprod2(1,1))/dt; // // rDampingMatrix(3*ii,3*ii) -= msprod(0,0); // rDampingMatrix(3*ii,3*ii+1) -= msprod(0,1); // rDampingMatrix(3*ii+1,3*ii) -= msprod(1,0); // rDampingMatrix(3*ii+1,3*ii+1) -= msprod(1,1); // MODEL 3 // rDampingMatrix(3*ii,3*ii) += msWorkMatrix(ii,ii); // rDampingMatrix(3*ii+1,3*ii+1) += msWorkMatrix(ii,ii); // rDampingMatrix(3*ii,3*jj) += msWorkMatrix(ii,jj); // rDampingMatrix(3*ii+1,3*jj+1) += msWorkMatrix(ii,jj); // rDampingMatrix(3*jj,3*ii) += msWorkMatrix(jj,ii); // rDampingMatrix(3*jj+1,3*ii+1) += msWorkMatrix(jj,ii); // rDampingMatrix(3*jj,3*jj) += msWorkMatrix(jj,jj); // rDampingMatrix(3*jj+1,3*jj+1) += msWorkMatrix(jj,jj); } else { this->GetGeometry()[ii].FastGetSolutionStepValue(VELOCITY_X) = 0.0; } } } //CSF: rRightHandSideVector[3*jj] -= 0.5*gamma*curv2*An2[0]*dl; rRightHandSideVector[3*jj+1] -= 0.5*gamma*curv2*An2[1]*dl; //CSS: // rRightHandSideVector[3*jj] -= 0.5*gamma*dl*(nmat_jj(0,0)*msDN_Ds(jj,0) + nmat_jj(0,1)*msDN_Ds(jj,1)); // rRightHandSideVector[3*jj+1] -= 0.5*gamma*dl*(nmat_jj(1,0)*msDN_Ds(jj,0) + nmat_jj(1,1)*msDN_Ds(jj,1)); //Output force: this->GetGeometry()[jj].FastGetSolutionStepValue(FORCE_X) = -gamma*curv2*An2[0]*dl; this->GetGeometry()[jj].FastGetSolutionStepValue(FORCE_Y) = -gamma*curv2*An2[1]*dl; rDampingMatrix(3*ii,3*ii) += msWorkMatrix(ii,ii); rDampingMatrix(3*ii+1,3*ii+1) += msWorkMatrix(ii,ii); rDampingMatrix(3*ii,3*jj) += msWorkMatrix(ii,jj); rDampingMatrix(3*ii+1,3*jj+1) += msWorkMatrix(ii,jj); // rDampingMatrix(3*jj,3*ii) += msWorkMatrix(jj,ii); rDampingMatrix(3*jj+1,3*ii+1) += msWorkMatrix(jj,ii); rDampingMatrix(3*jj,3*jj) += msWorkMatrix(jj,jj); rDampingMatrix(3*jj+1,3*jj+1) += msWorkMatrix(jj,jj); if(k > 2 && this->GetGeometry()[kk].FastGetSolutionStepValue(IS_STRUCTURE) == 0.0) { array_1d<double,2> An3; An3[0] = this->GetGeometry()[kk].FastGetSolutionStepValue(NORMAL_X); An3[1] = this->GetGeometry()[kk].FastGetSolutionStepValue(NORMAL_Y); double norm3 = sqrt(An3[0]*An3[0] + An3[1]*An3[1]); An3 /= norm3; double curv3 = this->GetGeometry()[kk].FastGetSolutionStepValue(CURVATURE); double x3 = this->GetGeometry()[kk].X(); double y3 = this->GetGeometry()[kk].Y(); array_1d<double,2> x31; array_1d<double,2> x32; x31[0] = x1 - x3; x31[1] = y1 - y3; double dl1 = sqrt(x31[0]*x31[0] + x31[1]*x31[1]); x32[0] = x2 - x3; x32[1] = y2 - y3; double dl2 = sqrt(x32[0]*x32[0] + x32[1]*x32[1]); dl = dl1 + dl2; //CSF: rRightHandSideVector[3*kk] -= gamma*curv3*An3[0]*dl; rRightHandSideVector[3*kk+1] -= gamma*curv3*An3[1]*dl; msWorkMatrix = 1.0 * gamma * dl * prod(msDN_Dx,trans(msDN_Dx)) * dt; //CSS: // boost::numeric::ublas::bounded_matrix<double,2,2> nmat_kk = ZeroMatrix(2,2); // nmat_kk(0,0) = (1.0 - An3[0]*An3[0]); // nmat_kk(1,1) = (1.0 - An3[1]*An3[1]); // nmat_kk(1,0) = -An3[0]*An3[1]; // nmat_kk(0,1) = -An3[0]*An3[1]; // msDN_Ds(kk,0) = nmat_kk(0,0)*msDN_Dx(kk,0) + nmat_kk(0,1)*msDN_Dx(kk,1); // msDN_Ds(kk,1) = nmat_kk(1,0)*msDN_Dx(kk,0) + nmat_kk(1,1)*msDN_Dx(kk,1); // this->GetGeometry()[kk].FastGetSolutionStepValue(FORCE_X) = -gamma*curv3*An3[0]*dl; // this->GetGeometry()[kk].FastGetSolutionStepValue(FORCE_Y) = -gamma*curv3*An3[1]*dl; // dl = this->GetGeometry()[kk].FastGetSolutionStepValue(NODAL_H); // rRightHandSideVector[3*kk] += 0.5*gamma*dl*(nmat_kk(0,0)*msDN_Ds(kk,0) + nmat_kk(0,1)*msDN_Ds(kk,1)); // rRightHandSideVector[3*kk+1] += 0.5*gamma*dl*(nmat_kk(1,0)*msDN_Ds(kk,0) + nmat_kk(1,1)*msDN_Ds(kk,1)); // // // this->GetGeometry()[kk].FastGetSolutionStepValue(FORCE_X) = -gamma*curv3*An3[0]*dl; // this->GetGeometry()[kk].FastGetSolutionStepValue(FORCE_Y) = -gamma*curv3*An3[1]*dl; // // // msWorkMatrix = 0.0 * 0.5 * gamma * dl * prod(msDN_Ds,trans(msDN_Ds)) * dt; // rDampingMatrix(3*kk,3*kk) += msWorkMatrix(kk,kk); rDampingMatrix(3*kk+1,3*kk+1) += msWorkMatrix(kk,kk); // rDampingMatrix(3*ii,3*kk) += msWorkMatrix(ii,kk); // rDampingMatrix(3*ii+1,3*kk+1) += msWorkMatrix(ii,kk); // // rDampingMatrix(3*kk,3*ii) += msWorkMatrix(kk,ii); // rDampingMatrix(3*kk+1,3*ii+1) += msWorkMatrix(kk,ii); // // rDampingMatrix(3*jj,3*kk) += msWorkMatrix(jj,kk); // rDampingMatrix(3*jj+1,3*kk+1) += msWorkMatrix(jj,kk); // // rDampingMatrix(3*kk,3*jj) += msWorkMatrix(kk,jj); // rDampingMatrix(3*kk+1,3*jj+1) += msWorkMatrix(kk,jj); } //Clean spurious force values for(unsigned int i = 0; i < 3; i++) { if(this->GetGeometry()[i].FastGetSolutionStepValue(IS_BOUNDARY) == 0.0) { this->GetGeometry()[i].FastGetSolutionStepValue(FORCE_X) = 0.0; this->GetGeometry()[i].FastGetSolutionStepValue(FORCE_Y) = 0.0; this->GetGeometry()[i].FastGetSolutionStepValue(FORCE_Z) = 0.0; } } } ``` Fifth step was concerning ”kratos/applications/ALEapplication/custom strategies/strategies/laplacian meshmoving strategy.h”: to ensure commenting all lines that find like the following: ``` CalculateMeshVelocities(); ``` Sixth step adding the following lines in ”kratos/applications/FluidDynamicsApplication/custom strategies/strategies/ residualbased predictorcorrector velocity bossak scheme turbulent.h” as: ``` if((itNode)− > FastGetSolutionStepValue(IS LAGRANGIAN INLET) == 0.0) { noalias(itNode− >FastGetSolutionStepValue(MESH VELOCITY)) = itNode− > FastGetSolutionStepValue(VELOCITY); UpdateDisplacement(CurrentDisplacement, OldDisplacement, OldVelocity, OldAcceleration, CurrentAccelera- tion); } else { itNode − > FastGetSolutionStepValue(MESH VELOCITY X) = 0.0; itNode− > FastGetSolutionStepValue(MESH VELOCITY Y) = 0.0; itNode− > FastGetSolutionStepValue(DISPLACEMENT X) = 0.0; itNode− > FastGetSolutionStepValue(DISPLACEMENT Y) = 0.0; } ``` Last step was adding the ”calculate curvature.h” file, which create and compute the surface curvature; and then to [2-D droplet related codes.pdf](https://github.com/KratosMultiphysics/Kratos/files/1433096/2-D.droplet.related.codes.pdf) place it in the ”kratos/applications/ULFapplication/custom processes” directory. (kindly please you might have a look at the attached ”calculate curvature.h” file) Thanks and best regards, [ProjectParameters-py.txt](https://github.com/KratosMultiphysics/Kratos/files/1433104/ProjectParameters-py.txt) [problem_settings-py.txt](https://github.com/KratosMultiphysics/Kratos/files/1433105/problem_settings-py.txt) [Lap_young_lagr-py.txt](https://github.com/KratosMultiphysics/Kratos/files/1433106/Lap_young_lagr-py.txt) [residualbased_predictorcorrector_velocity_bossak_scheme_turbulent-h.txt](https://github.com/KratosMultiphysics/Kratos/files/1433107/residualbased_predictorcorrector_velocity_bossak_scheme_turbulent-h.txt) [calculate_curvature-h.txt](https://github.com/KratosMultiphysics/Kratos/files/1433108/calculate_curvature-h.txt) [mesh_solve-py.txt](https://github.com/KratosMultiphysics/Kratos/files/1433109/mesh_solve-py.txt) [laplacian_meshmoving_strategy-h.txt](https://github.com/KratosMultiphysics/Kratos/files/1433110/laplacian_meshmoving_strategy-h.txt) [vms_monolithic_solver-py.txt](https://github.com/KratosMultiphysics/Kratos/files/1433111/vms_monolithic_solver-py.txt) [vms-h.txt](https://github.com/KratosMultiphysics/Kratos/files/1433112/vms-h.txt) [add_containers_to_python-cpp.txt](https://github.com/KratosMultiphysics/Kratos/files/1433113/add_containers_to_python-cpp.txt) [variable-cpp.txt](https://github.com/KratosMultiphysics/Kratos/files/1433114/variable-cpp.txt) [variable-h.txt](https://github.com/KratosMultiphysics/Kratos/files/1433115/variable-h.txt) " "__label__question Not enough funds Hello When i try to send mBitcoin. I get the message ""not enough funds"" as soon as i type 0 . in the amount Hope some one can help me " "__label__bug Domain name of URL in confirmation email is Heroku and not the custom domain Instead of kamo.social the URL links to comminterest.herokuapp.com It still works, but as it is not the same name, it may be disturbing for the users." "__label__bug Improve handling of dimension constraints in multi-dimension setups Currently constraints are only correctly applied on first load. Once you change one dimension, the second one should be re-filtered according to selected dimension's constraints. Could be tricky to implement, as possibly it would require a server request to find out allowed dimensions. In the old UI this logic feels really off too. ## Steps to reproduce Take a similar dimension config: ``` contentDimensions: country: label: 'Country' icon: icon-language default: eng defaultPreset: eng presets: eng: label: 'England' values: - eng uriSegment: eng rus: label: 'Russia' values: - rus uriSegment: rus language: label: 'Neos.Demo:Main:contentDimensions.language' icon: icon-language default: en_US defaultPreset: en_US presets: all: null en_US: label: 'English (US)' values: - en_US uriSegment: en en_UK: label: 'English (UK)' values: - en_UK - en_US uriSegment: uk de: label: German values: - de uriSegment: de constraints: country: 'rus': true '*': false fr: label: French values: - fr uriSegment: fr nl: label: Dutch values: - nl - de uriSegment: nl da: label: Danish values: - da uriSegment: da lv: label: Latvian values: - lv uriSegment: lv ``` 2. Select England as country. ""German"" language will be correctly hidden, due to constraints. 3. Choose Russia as country. ""German"" language would still be hidden, unless you apply selection of Russia and reload the page." "__label__bug Failed to do git setup In performance report this line keeps appearing. I've checked the chmod of the file and it is correct. Deleting the file does not help. Feb. 2, 2018, 6 a.m. | Git global setup | Failed to do git setup: error: could not lock config file /var/www/weblate/data/home/.gitconfig: File exists (255) * Weblate weblate-2.18-926-g5c0b9a1 * Python 2.7.12 * Django 1.11.6 * six 1.10.0 * social-auth-core 1.4.0 * social-auth-app-django 1.2.0 * django-appconf 1.0.1 * Translate Toolkit 2.2.5 * Whoosh 2.7.0 * defusedxml 0.4.1 * Git 2.7.4 * Pillow (PIL) 1.1.7 * dateutil 2.4.2 * lxml 3.5.0 * django-crispy-forms 1.7.0 * compressor 2.2 * djangorestframework 3.7.1 * user-agents 1.1.0 * pytz 2014.10 * pyuca N/A * pyLibravatar N/A * PyYAML 3.11 * Mercurial 3.7.3 * Database backends: django.db.backends.postgresql_psycopg2" "__label__bug Difficoltà a usare monitoraggio operazioni WA Ambiente di test, comune di Potenza Picena. Nell'ambito di test dei risultati restituiti dai web services, sono andato a testare il monitoraggio operazioni della wa, e spesso non mi restituisce risultati. Esempio il certificato emesso il 19.9 alle ore 12:05:15 idOperazioneANPR 582517, non riesco a estrarlo dal monitoraggio ne con una selezione per data, ne con una selezione per id anpr. " "__label__bug self._pop() does not exist https://github.com/trailofbits/manticore/blob/9f7b87d0b8e047d26f24ed9e5ddddb0068069ae9/manticore/platforms/evm.py#L2084 2 places in this file call `self._pop()`, which does not exist. i think it should be `self._pop_vm()`" "__label__enhancement [Feature Request] Support for inventory-like crafting tables **Custom Crafting Tables Version**:1.3.0 **TheDragonLib Version**:3.2.2 **CraftTweaker Version**:3.0.26 **Just Enough Items Version**:4.5.0.295 **MinecraftForge Version**:13.20.1.2388 **Minecraft Version**:1.11.2 **Client or Server?**: - [x] Client - [ ] Server **Crash Report (via. [Pastebin](http://pastebin.com/))**: none **What happens / happened?**: it's not realy a bug, but a logical issue, when you add a crafting recipe for the bigger crafting tables, it is very difficult to craft the items, as you can't have all ingredients at once in your inventory and all items drop, when you close the crafting window. Maybe making the crafting table having an inventory and keeping the items may be a solution. Sorry if this is not the place to post this. **How can I reproduce it?**: just make a recipe in a big enough crafting table that uses more than 36 different items. **(Optional) Mod List**: " "__label__enhancement Packaging (Debian) Hello, does ""Awaiting packagers"" mean there is an opening for someone willing to host and do packaging? If it is so I am open to creating and hosting Debian repository with package building." __label__enhancement Add support for Mixpanel source "__label__bug Discover view Popular Tags as cards are difficult to swipe correctly When multiple Popular Tags are available on the Discover view, they appear as left-right scrollable cards you can flip through. As a design choice this isn't necessarily bad but in its present state could use some adjustment as it's easy to accidentally move to the Chats or Contacts view. ## Recommendations * Make it more clear these cards are even there. I was unaware at first as left-right scrolling items within views only appears in this one part of the app. * Give more space from the edge of the view by making the cards smaller. * Reveal more of the out-of-view cards, ideally to the point where some text is cut off giving the user a visual clue that there is something there. * Consider redesigning this element into its own view. Popular tags can be presented the same as every other grouped list if you drop the inner card content. Clicking a popular tag would then show what is currently on the card into its own view, bringing it closer in line to the rest of the app flows. ### Spatial Awareness Inconsistency Additional to the above, there is a scenario with this element that may break the spatial awareness of the user. Steps to reproduce this scenario: 1. Go to Discover view. 2. Slide to the second or other cards (anything but first). 3. Tap any tag name, item, or user photo. 4. From this view, tap the back arrow to return to the Discover view. The cards reset their position breaking the spatial awareness of the user. They will be thinking they are going back but the card they interacted with is not visible. Unless the user remembers where they were, they will have lost their place." __label__bug Linux: watcher can produce ENOSPC when too many handles open - VSCode Version: 1.2 - OS Version: CentOS 7 running on VMPlayer 12 The error which I am getting is ``` [srinath@osboxes ~]$ code --verbose bash: cannot set terminal process group (-1): Inappropriate ioctl for device bash: no job control in this shell Error: watch /home/srinath/.config/Code/User ENOSPC at exports._errnoException (util.js:890:11) at FSWatcher.start (fs.js:1323:19) at Object.fs.watch (fs.js:1351:11) at r.e.registerWatchers (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:8:16692) at r.e (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:8:15951) at new r (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:8:19184) at v (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:4:15395) at t._createInstance (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:7:23640) at t._createAndCacheServiceInstance (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:7:24615) at t._getOrCreateServiceInstance (/usr/share/code/resources/app/out/vs/code/electron-main/main.js:7:23801) ``` I think while exiting suddenly (Because of sudden OS shutdown) it is unable to close some files or something. ``` ``` __label__enhancement Better prefix support - [x] Mention to get list of prefixes or help command. - [x] Multiple prefix support "__label__bug Scopy release v0.4 crashes on Windows 7 Hi: This is very strange. Why would Scopy crash on this ADI Windows 7 Dell lap-top all of a sudden and not on the Windows 7 desk-top? I've tried re-installing both the released v0.4 and a newer build from master several times in different places on the C: dive, under Program Files ( default ) and at the top of C:. Scopy runs but when I click on the connect button after selecting the board that is plugged in, it takes a few seconds and crashes. The same combination of Scopy and m2k works fine on the windows 7 Dell desk-top???? An older version of Scopy had been working fine up until I replaced it with v0.4. Doug" "__label__enhancement [feature] popup - zoom to feature hi, the zoom tool would be very useful in popup even if the layer is not an ""attributeLayer"" ![zoom](https://user-images.githubusercontent.com/10053874/27769188-59be1b04-5f1c-11e7-9db7-f4c742768757.jpg) thanks" __label__enhancement Exported risks analysis without password should not be encrypted https://github.com/monarc-project/zm-client/blob/b245be6ce68a0660ea8af7026b5c12be8ab00284/src/MonarcFO/Service/AnrInstanceService.php#L58 related to: https://github.com/monarc-project/zm-core/issues/1 __label__enhancement Title the app <Your First Name> +” Movie Manager” __label__enhancement implement zip streams for certain commands Read/write zip streams from/to stdin/stdout if no filename has been given or stdin is not empty. This allows pipelining commands such as - `force-dev-tool retrieve > backup.zip` - `force-dev-tool changeset create --manifest-only src/classes/Test.cls | force-dev-tool retrieve production | force-dev-tool deployTest devSandbox` - `git diff master develop | force-dev-tool changeset create | force-dev-tool deploy` "__label__bug [Unity] Skeleton Utility Bones lag slightly behind what's being rendered To reproduce: * Download 3.6 Spine runtime examples. * Create new project, and drag in dragon_SkeletonData from the Examples/Spine folder as a Skeleton Animation. * Set animation to flying and turn on looping. * Add SkeletonUtility component. * Spawn Hierarchy (Follow). * In the hierarchy, go down to tail6 and select so you can see the transform gizmo in the scene view. * Play the scene, and step through it frame by frame. * You will see the transform gizmo lag slightly behind where the tip of the tail appears to be. This is most noticeable at the apex of the tail's movement, when it starts moving down (see the attached screenshot). If I change Update() SkeletonAnimation.cs to do _UpdateLocal() _after_ skeleton.UpdateWorldTransform(), the problem is resolved with no evident side effects. (See the second screenshot -- same frame in the animation, but everything is where it should be.) However, the Spine runtime logic is pretty deep and I'm no expert. ![Incorrect Skeleton Utility Bone transform](https://user-images.githubusercontent.com/4312895/35592879-5e37c7d6-05dc-11e8-8901-3c84338e1ad2.png) ![After switching the order of operations](https://user-images.githubusercontent.com/4312895/35592911-75474a00-05dc-11e8-9e21-78c012770da9.png) " __label__enhancement Update reminder email text Extra sentence on eligibility for lottery "__label__question non-standard import ""github.com/golang/protobuf/proto"" in standard package Not able to use the protoc generated code due to the error while running i.e. non-standard import ""github.com/golang/protobuf/proto"" in standard package. Please help. ![image](https://user-images.githubusercontent.com/33253497/35637655-db0ed2fa-06da-11e8-8141-480e989bff86.png) " __label__enhancement Add a trace mode in the cli The trace mode will modify the logger configuration to use the console or not. `> trace on`: enable cli logging `> trace off`: disable cli logging "__label__bug IMAP doesn't work Hello, I tried to use the IMAP feature to create cards per Mail but I can't get it to work. I filled in all the infos and activated plus adressing and the mails arrive at the mail account but if I try to start the imap.sh myself I always get the error ""PHP notice: undefined property: stdclass::parts..."" " __label__bug GPX Requires UTC for datetimes See: https://en.wikipedia.org/wiki/GPS_Exchange_Format#Units Currently GPX files are exported in the timezone of the phone. "__label__enhancement Configurable Source Task Output file format Source tasks should be capable of outputting any of the following file types: JSON (default) Delimited (CSV, TSV, PSV) AVRO Parquet" "__label__bug Error at attempt to send location with scandinavian letters after invalid input with Demo Bot ### Description *Type*: Bug *Summary*: after you send some invalid input in Demochat (like ""aaa"") and got message ""seems that you don't want to send a money:( cnt=2"" - at attempt to use /location with Scndinavian/German ect specific letters - got an error on Android ![andr1](https://user-images.githubusercontent.com/4557972/34257032-c94f4cec-e660-11e7-9fc9-b7ed931bcbc9.png) #### Expected behavior can use location with any letters #### Actual behavior error on command Handling ### Reproduction - Open Status - Go to Contacts - Tap on Demo Bot - send ""aaa"". Should get ""seems that you don't want to send a money:( cnt=2"" - go to 1-1 chat - use location with German-specific letters (like Neumünster, Germany) ### Additional Information * Status version: 21.12.2017 dev build 0.9.10-469-g1837623c+ * Operating System: Android #### Logs TF: https://app.testfairy.com/projects/4803622-status/builds/7344802/sessions/6/?accessToken=/FQi46D8rEboB30DIMeJzKwekmM" "__label__bug Manage correctly empty repositories Instead of throw the next error: `level=error msg=""unable to process repository"" err=""repository has no HEAD` we should manage correctly empty repositories. Some examples: - https://github.com/OmniSharp/OmniSharp - https://github.com/fossasia/libregraphics.asia" __label__enhancement Materials listed in List View should be in a bullet border "__label__bug Post view: indicate there is content to load its just an empty space, that should be at top of post and indicate there should be an img or video:/1J1c7eML6uMwDU4uiKbKRxoqxGP6WMFMvb/index.html?v=topic+id=1Cma1m5GPL8Dyjg7U5xm5CJUyBbUdZYNSytopic1 ![snap 2018-02-05 at 18 37 19](https://user-images.githubusercontent.com/20817185/35819688-c0f7bc48-0aa3-11e8-9a1f-08fb2497873e.png) " "__label__enhancement [TW-806] Custom burndown reports _Johannes Schlatow on 2011-01-19T18:06:42Z says:_ I would like to have something like an alias for <pre> task burndown status.not:waiting </pre> It's annoying to type this filter every time, therefore taskwarrior should provide configurable burndown reports analogous to the custom reports. This enables users to: * define a new burndown report with a custom name * select the time resolution (daily, weekly, monthly) for this report * add default filters (e.g. status.not:waiting) to this report" "__label__enhancement Add support for tables Many Markdown implementations support tables using vertical pipes to separate the columns, for example: - [Github](https://help.github.com/articles/organizing-information-with-tables/) - [Markdown Extra](https://michelf.ca/projects/php-markdown/extra/) Sadly, this omission has yet to be addressed in CommonMark, but mmd should support it anyways. " "__label__enhancement Relayout when output effective resolution changes The layout cache needs to be updated when the effective output resolution changes. There should be an event somewhere from wlroots to listen to that, all that has to be done is trigger `Layout.reLayout` at the appropriate times." __label__enhancement Create invites route to send invite email to gym owner Add a new owner_email field to the gym table Create a route to trigger a send to that email __label__enhancement Use Pre-trained Embeddings "__label__enhancement Running scheduled jobs Hi, Kudos for the great job! This will be definitely take django to the next level! Are you planning to include support for scheduled jobs? Like celery beat? Any suggested workarounds? Best, Erik. " "__label__bug False positives when using the slash symbol (""/"") in scope If you include the slash symbol (`/`) in the scope of a commit message, `subject-empty` and `type-empty` rules start throwing errors. ## Current Behavior For the commit message `feat(components/Component): subject`, I am currently getting the following output: ```sh > commitlint -e ⧗ input: feat(components/Component): subject ✖ message may not be empty [subject-empty] ✖ type may not be empty [type-empty] ✖ found 2 problems, 0 warnings ``` ## Expected Behavior The commit message `feat(components/Component): subject` should pass. ## Affected packages Not sure. ## Possible Solution Not sure. ## Steps to Reproduce (for bugs) 1. Stage any changes. 2. Commit the changes with the message that has a slash in the scope – e.g. `feat(components/Component): subject` 3. Run `commitlint -e` <details> <summary>commitlint.config.js</summary> ```js module.exports = { extends: ['@anvilabs/commitlint-config'], }; ``` </details> ## Context Can't use scopes with slashes in them. ## Your Environment | Executable | Version | | ---: | :--- | | `commitlint --version` | 6.0.2 | | `git --version` | 2.16.1 | | `node --version` | 9.4.0 | " __label__enhancement enrich Readme with more information "__label__enhancement [Web] KeymanWeb Testing Infrastructure * [x] A: Refactor the web/samples subfolder, moving the appropriate pages to a new web/testing subfolder. Is being addressed with #353. * [x] B: Provide necessary infrastructure to support Node.js - in particular, the Mocha package - within the web subfolder. (Addressed with the base TypeScript conversion PR - #496.) - [x] Include changes to .gitignore; the node_packages folder should be listed there. * [ ] C: Design and implement Mocha-based unit tests for KeymanWeb code coverage. (See #563.) - [ ] Implement these within their own specific subfolder. - [ ] Investigate integrating these tests as part of our PR builds. ---- At present, outside of detecting the status of builds, we lack automated testing for KMW. Our goal is to implement automated tests using [Mocha](https://mochajs.org/), which itself relies upon [Node.js](https://nodejs.org/en/) in order to better ensure build quality into the future. In the meantime, all of our existing test infrastructure exists within the web/samples subfolder - this should be reorganized to provide a separate web/testing section." "__label__question Installation files to deploy in Shiny Server install.packages(""devtools"") install.packages(""knitr"") install.packages(""rmarkdown"") devtools::install_github(""reyzaguirre/pepa"") devtools::install_github(""reyzaguirre/st4gi"") devtools::install_github(""CIP-RIU/fbanalysis"") #Install Analytic packages from R.Eyzaguirre install.packages(""devtools"") install.packages(""knitr"") install.packages(""rmarkdown"") devtools::install_github(""reyzaguirre/st4gi"") devtools::install_github(""reyzaguirre/pepa"") #Token for private repos token_package<-""86ff78fa94cebca0b3b02eaa36a6ecaee8243489"" library(devtools) devtools::install_github(""CIP-RIU/pvs"",auth_token = token_package) install.packages(""rlist"") devtools::install_github(""CIP-RIU/hidap"", auth_token = token_package) install.packages(""openxlsx"") install.packages(""shinydashboard"") install.packages(""purrr"") install.packages(""shinyURL"") install.packages(""st4gi"") install.packages(""tibble"") install.packages(""knitr"") install.packages(""readxl"") install.packages(""DBI"") install.packages(""RMySQL"") install.packages(""spsurvey"") install.packages(""foreign"") install.packages(""tools"") install.packages(""stringr"") install.packages(""shinyBS"") #install.packages(""fbanalysis"") #install.packages(""pepa"") install.packages(""shinyFiles"") #in case of linux/debian we use the CRAN version install.packages(""rlist"") install.packages(""factoextra"") #install.packages(""fbdocs"") install.packages(""tibble"") install.packages(""shinyjs"") #Brapi Packages devtools::install_github(""CIP-RIU/brapi"") devtools::install_github(""CIP-RIU/brapps"") devtools::install_github(""CIP-RIU/brapiTS"") #devtools::install_github(""CIP-RIU/fbmet"") #erradicate this packages " __label__bug TimeTriggers should convert to UTC Turns out the Raspberry Pi defaults to the Etc/UTC timezone which is why my front door light was still on right now. Ideally the time of day that I'm sending from the frontend should be converted by the rules engine. __label__bug Avoid superfluous + signs Avoid the superfluous + sign in the latex output of the expression `(+ x -3)`. "__label__bug Getting Started stargazer import fails ### Expected behavior The Getting Started guide works without error. ### Actual behavior The Getting Started instruction to import data from `stargazer.csv` fails because the csv contains timestamp data, but the `stargazer` frame is not configured to handle timestamps. Running the command: ``` pilosa import -i repository -f stargazer stargazer.csv ``` results in the error: ``` err=time quantum not set in either index or frame ``` ### Steps to reproduce the behavior Follow the Getting Started up until `pilosa import -i repository -f stargazer stargazer.csv` ### Information about your environment (OS/architecture, CPU, RAM, cluster/solo, configuration, etc.) MacOSX " "__label__enhancement xGetInputConfig: Update from proof of concept. 1. Remove second parameter. Instead, return all of the data at once. 2. Rename function to xGetKeyBinding. " __label__bug [TW-34] depends doesn't match tasks? _Aikido Guy says:_ It seems that depends may not be matching tasks. ``` $ task myReport depends:35 No matches. $ task myReport | grep 35 35 11/8/30 2 wks projA hi 36 35 11/9/27 -8 days projB there 352 tasks ``` My only filter is: `status.not:deleted` "__label__bug Crash when logging/printing Unicode symbols The bot crashed multiple times in public testing in the SOBotics chat. This error is either caused by printing the messages with `print(message)`. There are now three possibilities I could think of to resolve this issue: - **Don't use Unicode:** The worst attempt, as bots like Heat Detector use Unicode in their messages. - **Don't log/print the messages to chat:** The currently active solution, but more a quick and dirty solution than a real fix. - **Implement Unicode handling:** I never did that and don't know how it actually works and how to implement it. *Information and guidance about this solution is appreciated!* Steps to find the issue cause: uncomment the two lines above and check which one of the both is causing the error." "__label__bug VBAP panning arguments are strictly control rate and not interpolated The azimuth, elevation, and spread arguments to VBAP are time-quantized with no interpolation, which adds noise to the signal when modulated quickly. " __label__bug [Apache対応]IfVersionディレクティブが使えないサーバーがある ## What - Ref: https://github.com/open-qhm/qhm/pull/89#issuecomment-363705511 - `mod_version` モジュールが有効でないサーバーではエラーが発生して動作しなくなる - `IfVersion` ではなく `IfModule` での分岐を試みる ## Why さくらのレンタルサーバーというメジャーなサーバーで動かないのではダメなので。 ## How - `IfModule` により `mod_authz_host` の有無により分岐すれば良さそう - 有る→ 2.4 系なので `Require` が使える - 無し→ 古いApacheなので `Order` が使える "__label__question K8s example - only one replication branch is running. I'm testing PostDock solution on GKE, k8s 1.8.6. Almost everything is on default configuration (with PersistentStorage). After about 30 minutes situation is following: **In** `kubectl get pod --namespace=mysystem | grep pgpool | awk '{print $1 }' | while read pod; do echo ""$pod"": ;kubectl exec --namespace=mysystem $pod -- bash -c 'PGCONNECT_TIMEOUT=$CHECK_PGCONNECT_TIMEOUT PGPASSWORD=$CHECK_PASSWORD psql -U $CHECK_USER -h 127.0.0.1 template1 -c ""show pool_nodes""' ; done ` **Out** ``` mysystem-database-pgpool-6bdc685-6m4hx: node_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replication_delay ---------+---------------------------+------+--------+-----------+---------+------------+-------------------+------------------- 0 | mysystem-db-node1-service | 5432 | up | 0.200000 | primary | 0 | false | 0 1 | mysystem-db-node2-service | 5432 | down | 0.200000 | standby | 0 | false | 0 2 | mysystem-db-node3-service | 5432 | down | 0.200000 | standby | 0 | false | 0 3 | mysystem-db-node4-service | 5432 | up | 0.200000 | standby | 0 | true | 0 4 | mysystem-db-node5-service | 5432 | down | 0.200000 | standby | 0 | false | 348704 (5 rows) mysystem-database-pgpool-6bdc685-79zpm: node_id | hostname | port | status | lb_weight | role | select_cnt | load_balance_node | replication_delay ---------+---------------------------+------+--------+-----------+---------+------------+-------------------+------------------- 0 | mysystem-db-node1-service | 5432 | up | 0.200000 | primary | 0 | false | 0 1 | mysystem-db-node2-service | 5432 | down | 0.200000 | standby | 0 | false | 0 2 | mysystem-db-node3-service | 5432 | down | 0.200000 | standby | 0 | false | 0 3 | mysystem-db-node4-service | 5432 | up | 0.200000 | standby | 0 | true | 0 4 | mysystem-db-node5-service | 5432 | down | 0.200000 | standby | 0 | false | 348704 (5 rows) ``` **In** `kubectl get pod --namespace=mysystem | grep db-node | awk '{print $1}' | while read pod ; do echo ""$pod"": ; kubectl exec --namespace=mysystem $pod -- bash -c 'gosu postgres repmgr cluster show' ; done ` **Out** (a bit shorted) ``` mysystem-db-node1-0: INFO: connecting to database Role | Name | Upstream | Connection String ----------+-------|----------|--------------------------------------------------------------------------------------------------------------------- \* master | node1 | | user=replica_user password=replica_pass host=mysystem-db-node1-service dbname=replica_db port=5432 connect_timeout=2 standby | node4 | node1 | user=replica_user password=replica_pass host=mysystem-db-node4-service dbname=replica_db port=5432 connect_timeout=2 mysystem-db-node4-0: INFO: connecting to database Role | Name | Upstream | Connection String ----------+-------|----------|--------------------------------------------------------------------------------------------------------------------- \* master | node1 | | user=replica_user password=replica_pass host=mysystem-db-node1-service dbname=replica_db port=5432 connect_timeout=2 standby | node4 | node1 | user=replica_user password=replica_pass host=mysystem-db-node4-service dbname=replica_db port=5432 connect_timeout=2 mysystem-db-node3-0: INFO: connecting to database ERROR: connection to database failed: could not connect to server: Connection refused Is the server running on host ""mysystem-db-node3-service"" (10.52.7.57) and accepting TCP/IP connections on port 5432? ``` **Logs from node-2**: ``` LOG: consistent recovery state reached at 0/5006658 LOG: database system is ready to accept read only connections LOG: invalid record length at 0/5006658 FATAL: highest timeline 1 of the primary is behind recovery timeline 2 FATAL: highest timeline 1 of the primary is behind recovery timeline 2 done server started Removing unactive replication slots of partners Getting slots from master node repmgr_slot_5 repmgr_slot_2 repmgr_slot_4 Closing slots which exist on master node Closing slot repmgr_slot_5 ERROR: replication slot ""repmgr_slot_5"" does not exist STATEMENT: SELECT pg_drop_replication_slot('repmgr_slot_5') ERROR: replication slot ""repmgr_slot_5"" does not exist Can't close the slot! Closing slot repmgr_slot_2 ERROR: replication slot ""repmgr_slot_2"" does not exist STATEMENT: SELECT pg_drop_replication_slot('repmgr_slot_2') ERROR: replication slot ""repmgr_slot_2"" does not exist Can't close the slot! Closing slot repmgr_slot_4 ERROR: replication slot ""repmgr_slot_4"" does not exist STATEMENT: SELECT pg_drop_replication_slot('repmgr_slot_4') ERROR: replication slot ""repmgr_slot_4"" does not exist Can't close the slot! Closing slot which current muster used on the node Closing slot repmgr_slot_1 ERROR: replication slot ""repmgr_slot_1"" does not exist STATEMENT: SELECT pg_drop_replication_slot('repmgr_slot_1'); ERROR: replication slot ""repmgr_slot_1"" does not exist Can't close the slot! Stop server LOG: received fast shutdown request LOG: aborting any active transactions waiting for server to shut down........LOG: shutting down .LOG: database system is shut down done server stopped ``` From every pod I can ping another pods by services names. Could You help me somehow in resolving this problem?" "__label__bug Nested hook execution in package ""DeLorean"" I got the following log: ``` [1/1] Executing file: /media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/vignettes/DeLorean-DeLorean.R Loading required package: Rcpp Error in Èèl¬’U : [ERROR] - [NESTED HOOK EXECUTION] - probe_promise_created triggers probe_jump_ctxt Calls: estimate.hyper ... tryCatchList -> tryCatchOne -> doTryCatch -> evalq -> evalq In addition: Warning message: In ðôðŽ’U : '/media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/vignettes' already exists error while dyntracing code block Error: [ERROR] - [NESTED HOOK EXECUTION] - probe_promise_created triggers probe_end Execution halted Error: [ERROR] - [NESTED HOOK EXECUTION] - probe_promise_created triggers probe_promise_created ``` The code of the vignette (including instrumentation): ```r library(promisedyntracer) dyntracer <- create_dyntracer('/media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/data/DeLorean-DeLorean.sqlite',verbose=FALSE) dyntrace(dyntracer, { ## ----setup, echo=F------------------------------------------------------- knitr::opts_chunk$set( fig.width=12, fig.height=12/1.618, out.width='685px', dpi=144, message=FALSE) ## ----guoData------------------------------------------------------------- library(DeLorean) library(dplyr) data(GuoDeLorean) # Limit number of cores to 2 for CRAN options(DL.num.cores=min(default.num.cores(), 2)) ## ------------------------------------------------------------------------ dl <- de.lorean(guo.expr, guo.gene.meta, guo.cell.meta) ## ------------------------------------------------------------------------ dl <- estimate.hyper( dl, sigma.tau=0.5, length.scale=1.5, model.name='exact-sizes') ## ------------------------------------------------------------------------ num.at.each.stage <- 5 epi.sampled.cells <- guo.cell.meta %>% filter(capture < ""32C"" | ""EPI"" == cell.type | ""ICM"" == cell.type) %>% group_by(capture) %>% do(sample_n(., num.at.each.stage)) dl <- filter_cells(dl, cells=epi.sampled.cells$cell) ## ----aov----------------------------------------------------------------- dl <- aov.dl(dl) ## ------------------------------------------------------------------------ head(dl$aov) ## ------------------------------------------------------------------------ tail(dl$aov) ## ---- exec=FALSE--------------------------------------------------------- dl <- filter_genes(dl, genes=head(dl$aov, 20)$gene) ## ------------------------------------------------------------------------ dl <- examine.convergence(dl) plot(dl, type='Rhat') ## ----plot---------------------------------------------------------------- plot(dl, type='pseudotime') ## ------------------------------------------------------------------------ dl <- make.predictions(dl) plot(dl, type='profiles') }) destroy_dyntracer(dyntracer) write('OK', '/media/kondziu/b7a9548c-13a0-4fe6-8a28-de8d491a209b/R/traces/lucoa/2018-01-19-18-30-19/data/DeLorean-DeLorean.OK') ```" __label__enhancement Emacs.app in Rudix From: Kristoffer Lawson Good to see emacs included in the packages available for Rudix. Any chance of also getting the application version there too? Ie. the package that provides a GUI and can be moved or installed to /Applications. __label__bug stack overflow in master's parseRelation Seeing this when I pulled in `master`: ``` at parseRelation (node_modules\objection\lib\model\modelParseRelations.js:22:12) at parseRelationsIntoModelInstances (node_modules\objection\lib\model\modelParseRelations.js:11:30) at parseRelationObject (node_modules\objection\lib\model\modelParseRelations.js:54:14) at parseRelationArray (node_modules\objection\lib\model\modelParseRelations.js:33:19) at parseRelation (node_modules\objection\lib\model\modelParseRelations.js:20:12) at parseRelationsIntoModelInstances (node_modules\objection\lib\model\modelParseRelations.js:11:30) at parseRelationObject (node_modules\objection\lib\model\modelParseRelations.js:54:14) at parseRelation (node_modules\objection\lib\model\modelParseRelations.js:22:12) at parseRelationsIntoModelInstances (node_modules\objection\lib\model\modelParseRelations.js:11:30) at parseRelationObject (node_modules\objection\lib\model\modelParseRelations.js:54:14) at parseRelationArray (node_modules\objection\lib\model\modelParseRelations.js:33:19) at parseRelation (node_modules\objection\lib\model\modelParseRelations.js:20:12) at parseRelationsIntoModelInstances (node_modules\objection\lib\model\modelParseRelations.js:11:30) at setJson (node_modules\objection\lib\model\modelSet.js:32:5) at Asset.$setJson (node_modules\objection\lib\model\Model.js:184:12) at Function.fromJson (node_modules\objection\lib\model\Model.js:311:11) ... ``` Will add more details as I find them. __label__bug website - create 'menu' component "__label__bug Crashes on iOS 9.3.5 Hi Leo, The app crashes when I try to present popup bar using `tabBarController?.presentPopupBar` in iOS **9.3.5** (iPad Air). **LNPopupBar.m** <img width=""735"" alt=""screen shot 2018-02-04 at 8 56 10 pm"" src=""https://user-images.githubusercontent.com/6995089/35778937-ca30fa00-09f3-11e8-8368-836a6f889318.png""> **Console** <img width=""769"" alt=""screen shot 2018-02-04 at 8 57 04 pm"" src=""https://user-images.githubusercontent.com/6995089/35778939-cf6c268e-09f3-11e8-9a44-545e3390ef4e.png""> My Tab Bar's translucency is set to `false`. Everything works fine on iOS 11 (tested on both Simulator and actual device). The issue is happening in the latest release (**v2.5.6**) of LNPopupController. Thanks! " "__label__question Ctrl+(Shift+)Space shortcut for checking to-dos <!-- What is the problem? --> Most outliners use Ctrl+Space as the shortcut for toggling checkboxes in to-do lists. This extension uses Alt+C. Edit: As Ctrl+Space seems to be used by the editor, Ctrl+Shift+Space is also very convenient. Would it be possible to add/change the shortcut or enable customizing it? Is it possible to add custom shortcuts in vscode? If so, what would be the command to bind to? Thanks for the awesome extension! This was the missing bit to move from other outliners (whether online or offline) to markdown files." "__label__question Persistent server-side session storage using sockets and HTTP routes Hello, I'm not sure if this is the correct place to ask this, but Miguel seems to be a wealth of Flask knowledge (not to mention that he wrote this library), I figured I'd try here. Additionally, I'm working on my first webapp, so I'm still new to this world. Forgive me if this is the wrong forum. I'm working on a flask app that uses Flask-SocketIO and Flask-Sessions. I know from the Flask-SocketIO documentation that when `session` is accessed it gets forked from the `session` object that regular HTTP request routes see. I have all of the logic and state information needed for a single user stored as one custom object that gets put into the Flask `session` when it exits a route (or `@socket.on` entry point). Because of the front end libraries I'm using, I will probably need to use a mix of sockets and HTTP requests. My question is, what is the best way to maintain an up-to-date state between both types of entry points? Thanks!" "__label__bug user.userChannels().list() fails to find chat channels **Version:** 3.10.0 ### Code Snippet ```node const chatUser = await chatService.users(identity).fetch(); const channels = await chatUser.userChannels().list(); ``` ### Exception/Log ``` status=404, message=The requested resource /Services/*serviceSid*/Users/*identityString*/Channels was not found, code=20404, moreInfo=https://www.twilio.com/docs/errors/20404, detail=undefined ``` ### Steps to Reproduce 1. With a valid chatService object, fetch a user via their `identity` string. 2. Attempt to fetch a list of their channels. ### Result A 404 occurs because the user channels resource is only available via the `userSid` and not the `identity` value. The `chatUser.userChannels().list()` call should be able to correctly supply the `userSid` and not the `identity` string. (Or the REST API should accept an identity string). ### Workaround ``` let chatUser = await chatService.users(identity).fetch(); chatUser = await chatService.users(chatUser.sid).fetch(); const channels = await chatUser.userChannels().list(); ``` This correctly instantiates the `chatUser` object with the `userSid` instead of the identity so that it can correctly make the `userChannels().list()` request. " "__label__bug Ping input does not report readings with duration of 0 correctly ## Directions Using the ping plugin the output is inconsistent when used in conjunction with the basicstats ## Bug report ### Relevant telegraf.conf: ### System info: Windows 10 and windows server 2008 (that I tested) Telegraf Master from a two weeks ago. ### Steps to reproduce: 1. Configure Telegraf with ping input, basicstats and graphite output ### Expected behavior: Receive all series from the graphite output. ### Actual behavior: Systems are pinged as expected but... Some series end up missing altogether(not always the sames ones), some appear and disappear. Some are only missing the metrics associated with basicstats (ex. mean). ### Additional info: I will try without basicstats to see if it is related. ### Feature request 1 - Have it work consistently. 2 - Do not depend on OS ping output (Native Go pinger) or create a win_ping plugin that will handle correctly the various particularities of the ping output." "__label__enhancement column layouts fit to data/ fit to data & fill revert after ajax refresh Hi Oli, The columns in the two layouts mentioned fit the data properly on initialization. However, each column becomes ""fixed"" regardless of data after call to setData method with ajax refresh. Example of call: ~~~ var tabulatorOptions = { height: $(window).height() - 100, layout: ""fitDataFill"", ajaxConfig: { type: ""POST"", contentType: ""application/json; charset=utf-8"" }, tooltips: true, headerTooltip: true, showLoader: true, ajaxResponse: function (url, params, response) { var gridResponse = response.d; var cols = $.parseJSON(JSON.stringify(gridResponse.columns, replacer)); var gridData = $.parseJSON(JSON.stringify(gridResponse.gridData, replacer)); $('#tblLoginActivity').tabulator(""setColumns"", cols); return gridData; } } oTbl = $('#tblLoginActivity').tabulator(tabulatorOptions); function getLoginsActivity() { oTbl.tabulator(""clearData""); var param = getReportDataParam(); if ($view.val() == '1') { oTbl.tabulator(""setData"", ""/GetLoginsActivityByCompany"", ""{'param':"" + JSON.stringify(param) + ""}"", ""POST""); } if ($view.val() == '2') { oTbl.tabulator(""setData"", ""/GetLoginsActivityByUser"", ""{'param':"" + JSON.stringify(param) + ""}"", ""POST""); } if ($view.val() == '3') { oTbl.tabulator(""setData"", ""/GetSiteAreaActivitySummary"", ""{'param':"" + JSON.stringify(param) + ""}"", ""POST""); } } ~~~" "__label__bug [Console] Improve Table performance add BC Break | Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | yes | RFC? | no | Symfony version | master:2c9922e8afc8f4b2d6d93b63dbfb865b139eac48 The console `Symfony\Component\Console\Helper\Table::render()` gets a fatal error line 282. Its method `calculateColumnsWidth` expects an array parameter but `buildTableRows` returns an iterable object. The error I've got: `Argument 1 passed to Symfony\Component\Console\Helper\Table::calculateColumnsWidth() must be of the type array, object given`" __label__enhancement Ensure every page has an appropriate canonical url set Inspection should also include instances of pages where there may be multiple variants of query parameters and/or anchors appended (e.g. `aliemu.com/?s=foo` vs `aliemu.com/?s=foo#bar`) "__label__bug Actually count number of guides, images, etc. on homepage " "__label__bug Still matches snippet-markdown http://copypastor.sobotics.org/posts/49 Not sure, if it really matched the markdown for the snippet, but we should keep an eye on it. It's possible that the many `""` in JS make high scores" __label__bug Close Button Is Misaligned with CSD The close button on Fedora 27 with Firefox 58 + CSD is misaligned with the rest of the HeaderBar. ![csd-firefox-issue](https://user-images.githubusercontent.com/4712288/35932250-e0fcfac4-0c3f-11e8-815a-ac3ade5a07cd.png) This is persistent with all sizes of the CSD bar and with both light and dark themes. "__label__bug 'Uncaught Error: No element indexed by 1' when running java compiler with sourcemaps Here's my config: ```js new ClosureCompilerPlugin({ compiler: { language_in: 'ECMASCRIPT6', language_out: 'ECMASCRIPT5', compilation_level: 'SIMPLE', warning_level: 'QUIET', create_source_map: true }, concurrency: 3 }) ``` Following is the full stack trace: ``` Error: No element indexed by 1 at ArraySet_at [as at] (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-core\node_modules\source-map\lib\source-map\array-set.js:93:11) at SourceMapConsumer.<anonymous> (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-core\node_modules\source-map\lib\source-map\source-map-consumer.js:147:69) at Array.map (native) at SourceMapConsumer_eachMapping [as eachMapping] (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-core\node_modules\source-map\lib\source-map\source-map-consumer.js:146:16) at Function.SourceMapGenerator_fromSourceMap [as fromSourceMap] (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-core\node_modules\source-map\lib\source-map\source-map-generator.js:52:26) at SourceMapSource.node (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-core\lib\SourceMapSource.js:36:34) at SourceMapSource.proto.sourceAndMap (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-core\lib\SourceAndMapMixin.js:22:18) at Compilation.<anonymous> (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack\lib\SourceMapDevToolPlugin.js:55:32) at Array.map (native) at Compilation.<anonymous> (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack\lib\SourceMapDevToolPlugin.js:43:84) at Array.forEach (native) at Compilation.<anonymous> (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack\lib\SourceMapDevToolPlugin.js:42:11) at Compilation.applyPlugins (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\tapable\lib\Tapable.js:26:37) at Compilation.<anonymous> (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack\lib\Compilation.js:571:10) at Compilation.next (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\tapable\lib\Tapable.js:67:11) at done (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-closure-compiler\index.js:105:17) at Object.callback (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-closure-compiler\index.js:113:17) at C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-closure-compiler\index.js:79:16 at ChildProcess.<anonymous> (C:\Users\Chuck\git\sequoia\sequoia-webpack\node_modules\webpack-closure-compiler\lib\runner.js:70:12) at emitTwo (events.js:106:13) at ChildProcess.emit (events.js:191:7) at maybeClose (internal/child_process.js:877:16) at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5) ``` And the version of closure. ``` C:\dev\node_modules\google-closure-compiler>java -jar compiler.jar --version Closure Compiler (http://github.com/google/closure-compiler) Version: v20170124 Built on: 2017-01-27 11:44 ``` The problem seems to be with the following code in index.js: ```js if (compilerOptions['create_source_map']) { var outputSourceMap = JSON.parse(fs.readFileSync(outputSourceMapFile.path)); fs.unlinkSync(outputSourceMapFile.path); outputSourceMap.sources = []; outputSourceMap.sources.push(task.file); ``` The plugin is replacing the sources array produced by closure with a single element array containing the input filename. The problem is that the original sources array contains more than one element (10 in my case) and these sources elements are referenced by the mappings, so when SourceMapGenerator.fromSourceMap() is subsequently called to generate a source map file from this source map, then references to the removed sources array elements cause the exception. Following is the contents of the sources array generated by the compiler before it is overwritten by the above code: ``` 0:"" [synthetic:base] "" 1:"" [synthetic:util/defineproperty] "" 2:"" [synthetic:util/global] "" 3:"" [synthetic:util/polyfill] "" 4:"" [synthetic:es6/number/isfinite] "" 5:"" [synthetic:es6/number/isinteger] "" 6:"" [synthetic:es6/symbol] "" 7:"" [synthetic:es6/util/iteratorfromarray] "" 8:"" [synthetic:es6/array/keys] "" 9:""stdin"" ``` Are there any compiler options I can try to work around this problem? " "__label__enhancement Add support for import of ECS Service Currently, the aws_ecs_service resource does not support `import`. This makes it difficult to migrate an ECS-centric deployment to be managed by Terraform." "__label__bug Xpect files in IDE throwing exceptions Some of our Xpect test files work properly when run as a junit test using the Xpect runner (e.g. in our nightly build or when run locally) but throw exceptions when copied into the N4JS IDE (i.e. the product). Examples of such files are: * `SuperGetterSetterAccess_remote.n4js.xt` from `eu.numberfour.n4js.spec.tests` * `IDE_1789_CyclicDependencies_Test.n4js.xt` from `eu.numberfour.n4js.bugreports.tests` To reproduce: copy one of the above test files together with its required imported files into the work space, making sure that all folders are set up properly to ensure the imports can be resolved, and then perform a clean build or open the `.xt` file in an Xpect+Xtext editor. The exceptions occur when the file is processed by the incremental builder as well as when it is opened in an Xpect+Xtext editor. However, when opened in a plain N4JS editor or when the `.xt` file extension is removed from the file name, the exceptions no longer occur (so it seems to be a problem of the Xpect support in the IDE). Sample stack trace: ``` java.lang.NullPointerException at org.xpect.scoping.ComponentUtil.getValidRootTypes(ComponentUtil.java:80) at org.xpect.scoping.ComponentUtil.getValidTypes(ComponentUtil.java:107) at org.xpect.scoping.XpectScopeProvider.getAssignableTypes(XpectScopeProvider.java:63) at org.xpect.scoping.XpectScopeProvider.getScopeForComponentClass(XpectScopeProvider.java:114) at org.xpect.scoping.XpectScopeProvider.getScope(XpectScopeProvider.java:94) at org.eclipse.xtext.linking.impl.DefaultLinkingService.getScope(DefaultLinkingService.java:59) at org.eclipse.xtext.linking.impl.DefaultLinkingService.getLinkedObjects(DefaultLinkingService.java:119) at org.eclipse.xtext.linking.lazy.LazyLinkingResource.getEObject(LazyLinkingResource.java:247) at org.eclipse.xtext.linking.lazy.LazyLinkingResource.getEObject(LazyLinkingResource.java:222) at org.eclipse.xtext.linking.lazy.LazyLinkingResource.doResolveLazyCrossReference(LazyLinkingResource.java:189) at org.eclipse.xtext.linking.lazy.LazyLinkingResource.resolveLazyCrossReference(LazyLinkingResource.java:148) at org.eclipse.xtext.linking.lazy.LazyLinkingResource.resolveLazyCrossReferences(LazyLinkingResource.java:134) at org.eclipse.xtext.EcoreUtil2.resolveLazyCrossReferences(EcoreUtil2.java:498) at org.eclipse.xtext.validation.ResourceValidatorImpl.resolveProxies(ResourceValidatorImpl.java:161) at org.eclipse.xtext.validation.ResourceValidatorImpl.validate(ResourceValidatorImpl.java:74) at org.xpect.ui.services.XtResourceValidator.validateXpect(XtResourceValidator.java:60) at org.xpect.ui.services.XtResourceValidator.validate(XtResourceValidator.java:42) at org.eclipse.xtext.ui.validation.DefaultResourceUIValidatorExtension.addMarkers(DefaultResourceUIValidatorExtension.java:60) at org.eclipse.xtext.ui.validation.DefaultResourceUIValidatorExtension.updateValidationMarkers(DefaultResourceUIValidatorExtension.java:46) at org.eclipse.xtext.builder.builderState.MarkerUpdaterImpl.processDelta(MarkerUpdaterImpl.java:93) at org.eclipse.xtext.builder.builderState.MarkerUpdaterImpl.updateMarkers(MarkerUpdaterImpl.java:63) at org.eclipse.xtext.builder.builderState.AbstractBuilderState.updateMarkers(AbstractBuilderState.java:82) at eu.numberfour.n4js.ui.building.N4JSGenerateImmediatelyBuilderState.updateMarkers(N4JSGenerateImmediatelyBuilderState.java:220) at org.eclipse.xtext.builder.clustering.ClusteringBuilderState.doUpdate(ClusteringBuilderState.java:283) at eu.numberfour.n4js.ui.building.N4JSGenerateImmediatelyBuilderState.doUpdate(N4JSGenerateImmediatelyBuilderState.java:188) at org.eclipse.xtext.builder.builderState.AbstractBuilderState.update(AbstractBuilderState.java:116) at org.eclipse.xtext.builder.impl.XtextBuilder.doBuild(XtextBuilder.java:287) at eu.numberfour.n4js.ui.building.N4JSBuildTypeTrackingBuilder.doBuild(N4JSBuildTypeTrackingBuilder.java:77) at org.eclipse.xtext.builder.impl.XtextBuilder.incrementalBuild(XtextBuilder.java:267) at eu.numberfour.n4js.ui.building.N4JSBuildTypeTrackingBuilder.incrementalBuild(N4JSBuildTypeTrackingBuilder.java:54) at org.eclipse.xtext.builder.impl.XtextBuilder.build(XtextBuilder.java:161) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:735) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:206) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:246) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:301) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:304) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:360) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:383) at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:144) at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:235) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) ```" __label__enhancement QA Quarterly Donors VF PDF Make a VF page that will be rendered as a PDF showing the QA for a quarter specified in the QAReportsVF page "__label__enhancement Modify pusher script to update projects with the same version instead of appending Currently, I believe that the pusher script simply appends a project and its related data (params, funs) to the database. It would be great if it could first query the database on the project in question, and if the project exists (with the same version, maybe) update the information instead, so either overwrite the related entries in the tables or just delete them and push everything again. This would significantly reduce the friction when finding bugs in any stage of the pipeline." "__label__enhancement [FeatureRequest] Save contents of pane for offline plotly rendering If I want to save a pane, how do I do it from python? (using the pane id basically). Asking wrt saving a graph (vis.line) I checked the demo.py, didnt really find anything relevant to this." "__label__bug Stop using mutable default parameters A couple functions have mutable default arguments. This is not safe as python evaluates the arguments once, not each time the function is called. Described more here: http://docs.python-guide.org/en/latest/writing/gotchas/#mutable-default-arguments" "__label__bug Tabs not opening When I try to open a saved session the tabs ""seem"" to be opening, but when I click on them I see a white page with the page address, not the page. ![2017-12-06](https://user-images.githubusercontent.com/34315473/33676704-1751eaf8-da7c-11e7-98fb-ecbfee8d21e3.png) " "__label__enhancement Failing to parse JSON for GetDepositAddress Was getting deposit address for BTC, and I see this error: Binance.Api.BinanceApiException: 'BinanceApi.GetDepositAddressAsync failed to parse JSON api response: ""{""address"":""blah"",""success"":true,""addressTag"":"""",""url"":""https://btc.com/[Ljava.lang.String;@4ea6f448""}""' ArgumentNullException: Value cannot be null. I don't use it, but I'm implementing and testing all features you have implemented in your wrapper, and came across this. No rush, for me anyway, I dont need this." "__label__enhancement UpdateAll[Property] association method Given a hasMany you should be able to do: author.updateAllBooks(where=""releaseYear=1990, price=10""). Should scope the update with authorId=x, just like the other association methods. " "__label__bug [Bug] spy queue: waiting negative time The extension works fine on my PC, but on my laptop it often flips out saying ""Waitng -X seconds ..."". And it's obvious that it continuously (with less than 1 second delay) tries to send a spy mission. Yes, it says ""waitng"" in the message. Google Chrome 63 (latest)" "__label__bug Unicode decode error when trying to read in ascii table I thought that in Python 3, astropy.io.ascii worked with non-ASCII characters, but I am having issues with the following table: https://raw.githubusercontent.com/mrwilson/strictly-come-dancing-results/master/results.csv ```python In [4]: from astropy.table import Table In [5]: t = Table.read('results.csv') --------------------------------------------------------------------------- UnicodeEncodeError Traceback (most recent call last) <ipython-input-5-aa54d4eed93f> in <module>() ----> 1 t = Table.read('results.csv') ~/Dropbox/Code/Astropy/astropy/astropy/table/table.py in read(cls, *args, **kwargs) 2505 passed through to the underlying data reader (e.g. `~astropy.io.ascii.read`). 2506 """""" -> 2507 out = io_registry.read(cls, *args, **kwargs) 2508 # For some readers (e.g., ascii.ecsv), the returned `out` class is not 2509 # guaranteed to be the same as the desired output `cls`. If so, ~/Dropbox/Code/Astropy/astropy/astropy/io/registry.py in read(cls, format, *args, **kwargs) 515 516 reader = get_reader(format, cls) --> 517 data = reader(*args, **kwargs) 518 519 if not isinstance(data, cls): ~/Dropbox/Code/Astropy/astropy/astropy/io/ascii/connect.py in read_csv(filename, **kwargs) 78 from .ui import read 79 kwargs['format'] = 'csv' ---> 80 return read(filename, **kwargs) 81 82 ~/Dropbox/Code/Astropy/astropy/astropy/io/ascii/ui.py in read(table, guess, **kwargs) 366 fast_reader_rdr = get_reader(**fast_kwargs) 367 try: --> 368 dat = fast_reader_rdr.read(table) 369 _read_trace.append({'kwargs': fast_kwargs, 370 'Reader': fast_reader_rdr.__class__, ~/Dropbox/Code/Astropy/astropy/astropy/io/ascii/fastbasic.py in read(self, table) 107 data_start=self.data_start, 108 fill_extra_cols=self.fill_extra_cols, --> 109 **self.kwargs) 110 conversion_info = self._read_header() 111 self.check_header() ~/Dropbox/Code/Astropy/astropy/astropy/io/ascii/cparser.pyx in astropy.io.ascii.cparser.CParser.__cinit__() ~/Dropbox/Code/Astropy/astropy/astropy/io/ascii/cparser.pyx in astropy.io.ascii.cparser.CParser.setup_tokenizer() UnicodeEncodeError: 'ascii' codec can't encode character '\xeb' in position 11416: ordinal not in range(128) ``` However, pandas can read it in: ```python In [6]: from pandas import read_csv In [7]: read_csv('results.csv') Out[7]: ... ``` Don't ask why I'm trying to read in that table... 💃 🕺 " "__label__bug Inconsistent handling of Unicode character 'LINE SEPARATOR' (U+2028) IDEBUG-471 Opening the attached file in the IDE causes an issue with the xtext/text editors. Moving the cursor using the up-arrow/down-arrow keys shows lines of text ""jumping around"". This is caused by a [U+2028 LINE SEPARATOR|http://www.fileformat.info/info/unicode/char/2028/index.htm] between the first two lines of the document ({{@N4JS}} and {{export external...}}). Replacing the character with a normal 'LINE FEED (LF)' (U+000A) character makes the problem disappear. The Unicode standard defines a number of characters that conforming applications should recognize as line terminators: - LF: Line Feed, U+000A - VT: Vertical Tab, U+000B - FF: Form Feed, U+000C - CR: Carriage Return, U+000D - CR+LF: CR (U+000D) followed by LF (U+000A) - NEL: Next Line, U+0085 - LS: Line Separator, U+2028 - PS: Paragraph Separator, U+2029 https://en.wikipedia.org/wiki/Newline Already logged Eclipse issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=417101 . " __label__bug mapbox-gl-directions hits api.mapbox.com for geocoder mapbox-gl-directions hardcodes api.mapbox.com for the geocoder https://github.com/mapbox/mapbox-gl-directions/blob/e962b7e57b3e766e200ff20f79092db35850a261/src/controls/geocoder.js#L10 This should respect the `api` option. __label__bug Vagrant install is broken due to polkit Celery doesn't want to enable/start due to polkit policy issues. "__label__bug List method broken causing the build to fail: https://travis-ci.org/facundoolano/app-store-scraper/builds/335353628 the itunes rss feed api has changed, causing the method to break. url structure changed and seems like the category field has been removed as well." "__label__bug Door becomes an open space, unable to interact or pass through ![20160807174111_1](https://cloud.githubusercontent.com/assets/20889223/17463646/b05226f4-5cca-11e6-901b-5850210d1c2a.jpg) Cannot pass through it, use key does nothing, projectiles can't pass through it either. First time it happened somewhere in E2L2, second time it happened at the door near the starting area in E4L1, and third time it happened here, rendering me unable to progress through the episode without resetting it. Debug mode does not seem to contain any cheats that would help me here (noclip or teleportation). I am not sure what causes the bug. I am using the 64-bit 1.1.7 version of the source port on a Windows 10 Home PC. " "__label__enhancement Package/Dependency Management with Yarn A couple of days ago, Facebook announced a new package manager called [Yarn](https://code.facebook.com/posts/1840075619545360/yarn-a-new-package-manager-for-javascript/). Yarn allows engineers to continue utilizing the npm registry, but has some additional performance and security considerations built in. Yarn also has the potential to be a single solution for javascript and front-end package/dependency management, [bridging the gap between Bower and npm](https://bower.io/blog/2016/using-bower-with-yarn/). I know it's still new and fairly unproven, but I figured I would at least start the conversation. " __label__bug NavigationBarが消えたままになるバグを修正する 一度消した後に戻ると、消えたまんまになる "__label__bug Loading of production angular components samples 'hangs' occasionally on Edge ### Description The page is not loaded on Edge every time, Ctrl + F5 refresh is needed. Maybe this is somehow related to the Iframe element which is loading the Samples links in DocFX project. ### Steps to reproduce Open Edge browser and load our official demos page: https://www.infragistics.com/products/ignite-ui-angular/angular/components/tabbar.html ### Result No samples are loaded ### Expected result Samples should be loaded ### Attachments ![image](https://user-images.githubusercontent.com/11193764/35671269-8939a39c-0743-11e8-82d3-56731b7426c7.png) " __label__question Remove Spanish version? Maintaining 2 versions is becoming a blocking feature. Remove Spanish version? __label__enhancement The Items 'Mods' and 'Soundpacks' in the options menu Are Not Translatable The title says it all really. "__label__bug Importing Google Bookmarks cuts off Labels/Tags Hi all, that's my first post on GitHub, so please be patient with me ;-) I got the master version from 2015-09-08 running on my OC 8.1 running. The general import from Google Bookmarks is working, but it cuts off all Tags. I tried to work around by exporting from OC and editing the html file replacing 'TAGS=""""' with 'TAGS=""ALL""' for a first attempt. After reimporting the file, all URLs are gone. Only ""http://"" or ""https://"" is contained in the lists. The same happens, if I do not manipulate the html export file, but just reimport it. In addition, it would be good to have a Button to reset the TAG Filter on the Webfrontend. At the moment I workaround by ""F5""/reload. br Carsten " __label__enhancement Add step-by-step documentation How to install from scratch. "__label__bug File Encryption Form is Submittable w/ Blank Password Fields #### Expected Behavior Submitting blank password fields when Encrypting a File results in an error, or the form cannot be submitted until entries exist in both fields. #### Actual Behavior Submitting blank password fields when Encrypting a File causes the dialog window to close without creating an encrypted file, and with no error message explaining what just happened. #### How to Reproduce 1. Launch Amaze File Manager 3.2.1 on Android 8.1.0 2. Click the 3 Vertical Dots icon to the right of a File 3. Select 'Encrypt' 4. Select 'Got It' 6. Select 'OK' --- Device: Pixel 2 XL OS: Android 8.1.0 App Version: 3.2.1 --- #### Recording of the Bug ![Amaze_NoErrorOnEncryptionWithNoPassword.gif](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516243239/eacrv1zewz8x2wnfm1hv.gif) <br /><hr/><em>Posted on <a href=""https://utopian.io/utopian-io/@thewizard.studio/file-encryption-form-is-submittable-w-blank-password-fields"">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>" "__label__bug Tuple with set predicate not reported correctly Hi again :smile: I have a bit of an improvement request :smile: I have a spec with a set predicate: ```clojure (s/def :stm/success-state (s/tuple #{:start :end :latest-event :attempt-commit} any? nil?)) ``` Spec error was: ```shell Error: Spec assertion failed In: [0] val: :error fails at: [0] predicate: #{:start :end :latest-event :attempt-commit} In: [2] val: #object[Error Error: Oh noes!] fails at: [2] predicate: nil? :cljs.spec.alpha/spec :stm/success-state :cljs.spec.alpha/value [:error nil #object[Error Error: Oh noes!]] :cljs.spec.alpha/failure :assertion-failed ``` And `expound` error: ``` Error: Call to #'expound.alpha/value-in-context did not conform to spec: <filename missing>:<line number missing> -- Spec failed -------------------- Function arguments (... 0 ... ... ...) ^ should be one of: `:args`,`:fn`,`:ret` -- Spec failed -------------------- Function arguments (... 0 ... ... ...) ^ should satisfy nil? ------------------------- ``` " __label__bug Time line- a group of overlays looks flat a group of overlays looks flat. it should be thicker. after pressing an overlay it is ok. ![image.png](https://images.zenhubusercontent.com/592bc36751aa2c30577fb56b/5255db15-d559-435a-8e26-52dfb0eb5a6c) ![image.png](https://images.zenhubusercontent.com/592bc36751aa2c30577fb56b/6a53dbae-5f97-4a13-99a9-13168cfebd5c) __label__enhancement Determine underlying providers for IPAddresses It'd be super handy if we looked up providers for IPAddresses as part of the enrichment process. This would allow us to cluster based on this information and better understand what lives on which provider. "__label__bug Dockerfile MAINTAINER keyword not being added to labels **Description** Using buildah bud on a Dockerfile, the generated json file does not have the label maintainer set when a MAINTAINER keyword used in Dockerfile **Steps to reproduce the issue:** 1. run buildah bud -t myimage . (on a Dockerfile with the MAINTAINER keyword) 2. run podman inspect --type image myimage <image name form step one> 3. check if Label is set to container ""maintainer"" : ""something"" or null. **Describe the results you received:** ""Labels"": null, **Describe the results you expected:** Should be something like ""Labels"": { ""maintainer"": ""ipbabble <ipbabble@gmail.com>"" }, **Output of `rpm -q buildah` or `apt list buildah`:** Built from HEAD ``` (paste your output here) ``` **Output of `buildah version`:** ``` # buildah -v buildah version 0.8 (image-spec 1.0.0, runtime-spec 1.0.0) podman version 0.1 ``` **Output of `cat /etc/*release`:** ``` Fedora release 27 (Twenty Seven) ``` **Output of `uname -a`:** ``` Linux localhost.localdomain 4.13.9-300.fc27.x86_64 #1 SMP Mon Oct 23 13:41:58 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux ``` **Output of `cat /etc/containers/storage.conf`:** ``` # storage.conf is the configuration file for all tools # that share the containers/storage libraries # See man 5 containers-storage.conf for more information # The ""container storage"" table contains all of the server options. [storage] # Default Storage Driver driver = ""overlay"" # Temporary storage location runroot = ""/var/run/containers/storage"" # Primary Read/Write location of container storage graphroot = ""/var/lib/containers/storage"" [storage.options] # AdditionalImageStores is used to pass paths to additional Read/Only image stores # Must be comma separated list. additionalimagestores = [ ] # Size is used to set a maximum size of the container image. Only supported by # certain container storage drivers. size = """" # OverrideKernelCheck tells the driver to ignore kernel checks based on kernel version override_kernel_check = ""true"" ``` " __label__enhancement Upgrade to TERASOLUNA 5.4.0 "__label__bug Allow MPI version numbers of the form X.X in addition to X.X.X. The test of the MPI version number expected X.X.X, but some MPI implementations only use X.X. ``` ====================================================================== FAIL: test_mpiVersion (TestDependenciesVersion.TestDependenciesVersion) ---------------------------------------------------------------------- Traceback (most recent call last): File ""/home/collyking/bulild/pylith/pylith-2.2.1/unittests/pytests/utils/TestDependenciesVersion.py"", line 28, in test_mpiVersion self.failIf(match is None) AssertionError: True is not false ```" "__label__question Hashrate help! GTX 1060 6 GB Hi All, I am quiet newbie in mining. just setup 2 GTX 1060 6 gb DDR5 (Hynix) but when first start hashrate around 15 ~ 17 mhs after overclock 19 ~ 21 mhs. Never across beyond that hashrate. any of you able to help me what setting i have done wrong? Overclock setting: - Power limit 65% - Memory clock: +750 - Core clock: 0 - Fan: 70% using ethermine 0.12.0 setx GPU_FORCE_64BIT_PTR 0 setx GPU_MAX_HEAP_SIZE 100 setx GPU_USE_SYNC_OBJECTS 1 setx GPU_MAX_ALLOC_PERCENT 100 setx GPU_SINGLE_ALLOC_PERCENT 100 ethminer.exe -U --farm-recheck 2000 --cl-local-work 256 --cl-global-work 16384 -S asia1.ethermine.org:4444 -FS us1.ethermine.org:4444 -O <address> I am also change set force P0 to off " __label__enhancement コメント投稿部分のスタイル調整 "__label__bug Period comparison against a timedelta obj raises an error in PyPy The following code raises an error under PyPy, but works in CPython. ```python import sys sys.version # '3.5.3 (3f6eaa010fce, Jan 11 2018, 05:27:47)\n[PyPy 5.10.1 with GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)]' import datetime as dt import pendulum start_time = pendulum.now() end_time = pendulum.now() period_interval = end_time - start_time period_interval # <Period [2018-01-23T17:54:24.812611+01:00 -> 2018-01-23T17:54:24.813157+01:00]> period_interval < dt.timedelta(seconds=6) ``` The error is ``` TypeError Traceback (most recent call last) <ipython-input-5-155c77b08c1b> in <module>() ----> 1 period_interval < dt.timedelta(seconds=6) ~/Projects/pypy3-v5.10.1-osx64/lib-python/3/datetime.py in __lt__(self, other) 596 def __lt__(self, other): 597 if isinstance(other, timedelta): --> 598 return self._cmp(other) < 0 599 else: 600 _cmperror(self, other) ~/Projects/pypy3-v5.10.1-osx64/lib-python/3/datetime.py in _cmp(self, other) 614 def _cmp(self, other): 615 assert isinstance(other, timedelta) --> 616 return _cmp(self._getstate(), other._getstate()) 617 618 def __hash__(self): ~/Projects/pypy3-v5.10.1-osx64/lib-python/3/datetime.py in _cmp(x, y) 9 10 def _cmp(x, y): ---> 11 return 0 if x == y else 1 if x > y else -1 12 13 MINYEAR = 1 TypeError: unorderable types: Pendulum > int ``` While CPython datetime does the comparison in C using days & seconds [_datetimemodule.c#L2104](https://github.com/python/cpython/blob/master/Modules/_datetimemodule.c#L2104), PyPy (and the pure python reference) use `timedelta._cmp` [datetime.py#L730](https://github.com/python/cpython/blob/master/Lib/datetime.py#L730) which uses `timedelta._getstate` [datetime.py#L748](https://github.com/python/cpython/blob/master/Lib/datetime.py#L748). Unfortunately, `Period` implements `_getstate` [period.py#L303](https://github.com/sdispater/pendulum/blob/1.x/pendulum/period.py#L303), but doesn't implement `_cmp`, so the base's `_cmp` is called, and an error is raised. The fix is to implement `_cmp` for `Period`. As a workaround, using `period_interval.as_interval() < dt.timedelta(seconds=6)` works on both versions of python. Thanks! P.S. Pendulum is awesome! We have a very timezone-sensitive system, and we migrated from Arrow and never looked back :)" "__label__bug Subquery returns more than 1 row for multiple Faculty Roles When multiple Faculty Roles are defined for one Faculty, an OperationalError with message 'Subquery returns more than 1 row"" is encountered." "__label__bug Minor delta_debt amount check issue in call_order_update_evaluator A minor issue in `call_order_update_evaluator::do_evaluate(...)`. https://github.com/bitshares/bitshares-core/blob/2.0.171105a/libraries/chain/market_evaluator.cpp#L150-L155 : ``` if( o.delta_debt.amount < 0 ) { FC_ASSERT( d.get_balance(*_paying_account, *_debt_asset) >= o.delta_debt, ""Cannot cover by ${c} when payer only has ${b}"", (""c"", o.delta_debt.amount)(""b"", d.get_balance(*_paying_account, *_debt_asset).amount) ); } ``` Because balance is always non-negative, so it will be always greater than a negative value. The code should be: ``` if( o.delta_debt.amount < 0 ) { FC_ASSERT( d.get_balance(*_paying_account, *_debt_asset) >= -o.delta_debt, ""Cannot cover by ${c} when payer only has ${b}"", (""c"", o.delta_debt.amount)(""b"", d.get_balance(*_paying_account, *_debt_asset).amount) ); } ``` Perhaps the check can be removed because it's implicitly checked later at https://github.com/bitshares/bitshares-core/blob/2.0.171105a/libraries/chain/market_evaluator.cpp#L174: ``` d.adjust_balance( o.funding_account, o.delta_debt ); ``` Should not require a hard fork to fix this." __label__bug Ignore headings in code sections Do not process headings inside quotes and code sections. __label__enhancement feat: Support plugins with scoped name Supports plugin with name like @foo/yang-plugin-bar. Plugin should be called with `yang plugin @foo/bar`. __label__enhancement Emote Menu Need one that can be bound to a better key and has a nice GUI "__label__bug Possible buffer corruption in UDP receive parser **Description:** sending UDP to Akumuli in different packet sizes. **Symptoms:** exacly same content sent via TCP to Akumuli works fine. The UDP packet size from smallest to largest results in the same error. The content of buffer shown in the Akumuli log is corrupt (shows fragment of previous metric) **Error in akumuli.log:** 2018-01-29 21:55:53,761 UdpServer [ERROR] unexpected parameter id format - `+innodb_metrics_ibuf_merges_cntr_value alias+innodb_metrics_ibuf_size_cntr_value alias=mysqldb collector=mysql-aku-aaaa-6b8f589f6d-2ll28 host=mysql01-mysql namespace=default pod=mysql-aku-sonar-6b8f589f6d-2ll28 Subsystem=change_buffer\n:1517256452334752200\n*1` Note that that fragment is incorrect and not present in UDP packet: `+innodb_metrics_ibuf_merges_cntr_value alias+innodb_metrics_ibuf_merges_cntr_value alias+` Environment: k8s 1.9.2, same occurs on Docker deployment as well. Did not test without containers, so problem may be the same there too. Repro: 1. Send multiple metric types in the same packet va UDP 2. sudo tcpdump -i cni0 -n udp port 8383 -X 3. Check akumuli logs. **UDP : (tcpdump -i cni0 -n udp -X)** The udp traffic shows the content is correct: 15:53:48.478919 IP 10.244.0.147.42691 > 10.244.0.125.8383: UDP, length 2668 0x0000: 4500 0a88 41a5 0000 3f11 18c9 0af4 0093 E...A...?....... 0x0010: 0af4 007d a6c3 20bf 0a74 217d 2b69 6e6e ...}.....t!}+inn 0x0020: 6f64 625f 6d65 7472 6963 735f 696e 6e6f odb_metrics_inno 0x0030: 6462 5f72 776c 6f63 6b5f 785f 7370 696e db_rwlock_x_spin 0x0040: 5f77 6169 7473 5f63 6e74 725f 7661 6c75 _waits_cntr_valu 0x0050: 6520 616c 6961 733d 6d79 7371 6c64 6220 e.alias=mysqldb. 0x0060: 636f 6c6c 6563 746f 723d 6d79 7371 6c2d collector=mysql- 0x0070: 616b 752d 736f 6e61 722d 3662 3866 3538 aku-sonar-6b8f58 0x0080: 3966 3664 2d6e 746a 7071 2068 6f73 743d 9f6d-ntjpq.host= 0x0090: 6d79 7371 6c30 312d 6d79 7371 6c20 6e61 mysql01-mysql.na 0x00a0: 6d65 7370 6163 653d 6465 6661 756c 7420 mespace=default. 0x00b0: 706f 643d 6d79 7371 6c2d 616b 752d 736f pod=mysql-aku-so 0x00c0: 6e61 722d 3662 3866 3538 3966 3664 2d6e nar-6b8f589f6d-n 0x00d0: 746a 7071 2053 7562 7379 7374 656d 3d73 tjpq.Subsystem=s 0x00e0: 6572 7665 720d 0a3a 3135 3137 3237 3030 erver..:15172700 0x00f0: 3238 3430 3832 3737 3730 300d 0a2a 310d 28408277700..*1. 0x0100: 0a2b 300d 0a2b 696e 6e6f 6462 5f6d 6574 .+0..+innodb_met 0x0110: 7269 6373 5f69 6e6e 6f64 625f 7277 6c6f rics_innodb_rwlo 0x0120: 636b 5f73 785f 7370 696e 5f77 6169 7473 ck_sx_spin_waits 0x0130: 5f63 6e74 725f 7661 6c75 6520 616c 6961 _cntr_value.alia 0x0140: 733d 6d79 7371 6c64 6220 636f 6c6c 6563 s=mysqldb.collec 0x0150: 746f 723d 6d79 7371 6c2d 616b 752d 736f tor=mysql-aku-so 0x0160: 6e61 722d 3662 3866 3538 3966 3664 2d6e nar-6b8f589f6d-n 0x0170: 746a 7071 2068 6f73 743d 6d79 7371 6c30 tjpq.host=mysql0 0x0180: 312d 6d79 7371 6c20 6e61 6d65 7370 6163 1-mysql.namespac 0x0190: 653d 6465 6661 756c 7420 706f 643d 6d79 e=default.pod=my 0x01a0: 7371 6c2d 616b 752d 736f 6e61 722d 3662 sql-aku-sonar-6b 0x01b0: 3866 3538 3966 3664 2d6e 746a 7071 2053 8f589f6d-ntjpq.S 0x01c0: 7562 7379 7374 656d 3d73 6572 7665 720d ubsystem=server. 0x01d0: 0a3a 3135 3137 3237 3030 3238 3430 3832 .:15172700284082 0x01e0: 3830 3830 300d 0a2a 310d 0a2b 300d 0a2b 80800..*1..+0..+ 0x01f0: 696e 6e6f 6462 5f6d 6574 7269 6373 5f69 innodb_metrics_i 0x0200: 6e6e 6f64 625f 7277 6c6f 636b 5f73 5f73 nnodb_rwlock_s_s 0x0210: 7069 6e5f 726f 756e 6473 5f63 6e74 725f pin_rounds_cntr_ 0x0220: 7661 6c75 6520 616c 6961 733d 6d79 7371 value.alias=mysq 0x0230: 6c64 6220 636f 6c6c 6563 746f 723d 6d79 ldb.collector=my 0x0240: 7371 6c2d 616b 752d 736f 6e61 722d 3662 sql-aku-sonar-6b 0x0250: 3866 3538 3966 3664 2d6e 746a 7071 2068 8f589f6d-ntjpq.h 0x0260: 6f73 743d 6d79 7371 6c30 312d 6d79 7371 ost=mysql01-mysq 0x0270: 6c20 6e61 6d65 7370 6163 653d 6465 6661 l.namespace=defa 0x0280: 756c 7420 706f 643d 6d79 7371 6c2d 616b ult.pod=mysql-ak 0x0290: 752d 736f 6e61 722d 3662 3866 3538 3966 u-sonar-6b8f589f 0x02a0: 3664 2d6e 746a 7071 2053 7562 7379 7374 6d-ntjpq.Subsyst 0x02b0: 656d 3d73 6572 7665 720d 0a3a 3135 3137 em=server..:1517 0x02c0: 3237 3030 3238 3430 3832 3833 3330 300d 270028408283300. 0x02d0: 0a2a 310d 0a2b 360d 0a2b 696e 6e6f 6462 .*1..+6..+innodb 0x02e0: 5f6d 6574 7269 6373 5f69 6e6e 6f64 625f _metrics_innodb_ 0x02f0: 7277 6c6f 636b 5f78 5f73 7069 6e5f 726f rwlock_x_spin_ro 0x0300: 756e 6473 5f63 6e74 725f 7661 6c75 6520 unds_cntr_value. 0x0310: 616c 6961 733d 6d79 7371 6c64 6220 636f alias=mysqldb.co 0x0320: 6c6c 6563 746f 723d 6d79 7371 6c2d 616b llector=mysql-ak 0x0330: 752d 736f 6e61 722d 3662 3866 3538 3966 u-sonar-6b8f589f 0x0340: 3664 2d6e 746a 7071 2068 6f73 743d 6d79 6d-ntjpq.host=my 0x0350: 7371 6c30 312d 6d79 7371 6c20 6e61 6d65 sql01-mysql.name 0x0360: 7370 6163 653d 6465 6661 756c 7420 706f space=default.po 0x0370: 643d 6d79 7371 6c2d 616b 752d 736f 6e61 d=mysql-aku-sona 0x0380: 722d 3662 3866 3538 3966 3664 2d6e 746a r-6b8f589f6d-ntj 0x0390: 7071 2053 7562 7379 7374 656d 3d73 6572 pq.Subsystem=ser 0x03a0: 7665 720d 0a3a 3135 3137 3237 3030 3238 ver..:1517270028 0x03b0: 3430 3832 3835 3730 300d 0a2a 310d 0a2b 408285700..*1..+ 0x03c0: 310d 0a2b 696e 6e6f 6462 5f6d 6574 7269 1..+innodb_metri 0x03d0: 6373 5f69 6e6e 6f64 625f 7277 6c6f 636b cs_innodb_rwlock 0x03e0: 5f73 785f 7370 696e 5f72 6f75 6e64 735f _sx_spin_rounds_ 0x03f0: 636e 7472 5f76 616c 7565 2061 6c69 6173 cntr_value.alias 0x0400: 3d6d 7973 716c 6462 2063 6f6c 6c65 6374 =mysqldb.collect 0x0410: 6f72 3d6d 7973 716c 2d61 6b75 2d73 6f6e or=mysql-aku-son 0x0420: 6172 2d36 6238 6635 3839 6636 642d 6e74 ar-6b8f589f6d-nt 0x0430: 6a70 7120 686f 7374 3d6d 7973 716c 3031 jpq.host=mysql01 0x0440: 2d6d 7973 716c 206e 616d 6573 7061 6365 -mysql.namespace 0x0450: 3d64 6566 6175 6c74 2070 6f64 3d6d 7973 =default.pod=mys 0x0460: 716c 2d61 6b75 2d73 6f6e 6172 2d36 6238 ql-aku-sonar-6b8 0x0470: 6635 3839 6636 642d 6e74 6a70 7120 5375 f589f6d-ntjpq.Su 0x0480: 6273 7973 7465 6d3d 7365 7276 6572 0d0a bsystem=server.. 0x0490: 3a31 3531 3732 3730 3032 3834 3038 3238 :151727002840828 0x04a0: 3830 3030 0d0a 2a31 0d0a 2b30 0d0a 2b69 8000..*1..+0..+i 0x04b0: 6e6e 6f64 625f 6d65 7472 6963 735f 696e nnodb_metrics_in 0x04c0: 6e6f 6462 5f72 776c 6f63 6b5f 735f 6f73 nodb_rwlock_s_os 0x04d0: 5f77 6169 7473 5f63 6e74 725f 7661 6c75 _waits_cntr_valu 0x04e0: 6520 616c 6961 733d 6d79 7371 6c64 6220 e.alias=mysqldb. 0x04f0: 636f 6c6c 6563 746f 723d 6d79 7371 6c2d collector=mysql- 0x0500: 616b 752d 736f 6e61 722d 3662 3866 3538 aku-sonar-6b8f58 0x0510: 3966 3664 2d6e 746a 7071 2068 6f73 743d 9f6d-ntjpq.host= 0x0520: 6d79 7371 6c30 312d 6d79 7371 6c20 6e61 mysql01-mysql.na 0x0530: 6d65 7370 6163 653d 6465 6661 756c 7420 mespace=default. 0x0540: 706f 643d 6d79 7371 6c2d 616b 752d 736f pod=mysql-aku-so 0x0550: 6e61 722d 3662 3866 3538 3966 3664 2d6e nar-6b8f589f6d-n 0x0560: 746a 7071 2053 7562 7379 7374 656d 3d73 tjpq.Subsystem=s 0x0570: 6572 7665 720d 0a3a 3135 3137 3237 3030 erver..:15172700 0x0580: 3238 3430 3832 3931 3330 300d 0a2a 310d 28408291300..*1. 0x0590: 0a2b 330d 0a2b 696e 6e6f 6462 5f6d 6574 .+3..+innodb_met 0x05a0: 7269 6373 5f69 6e6e 6f64 625f 7277 6c6f rics_innodb_rwlo 0x05b0: 636b 5f78 5f6f 735f 7761 6974 735f 636e ck_x_os_waits_cn 0x05c0: 7472 5f76 616c 7565 2061 6c69 6173 3d6d tr_value.alias=m 0x05d0: 7973 716c 6462 2063 6f6c 6c65 6374 6f72 ysqldb.collector 0x05e0: 3d6d 7973 716c 2d61 6b75 2d73 6f6e 6172 =mysql-aku-sonar 0x05f0: 2d36 6238 6635 3839 6636 642d 6e74 6a70 -6b8f589f6d-ntjp 0x0600: 7120 686f 7374 3d6d 7973 716c 3031 2d6d q.host=mysql01-m 0x0610: 7973 716c 206e 616d 6573 7061 6365 3d64 ysql.namespace=d 0x0620: 6566 6175 6c74 2070 6f64 3d6d 7973 716c efault.pod=mysql 0x0630: 2d61 6b75 2d73 6f6e 6172 2d36 6238 6635 -aku-sonar-6b8f5 0x0640: 3839 6636 642d 6e74 6a70 7120 5375 6273 89f6d-ntjpq.Subs 0x0650: 7973 7465 6d3d 7365 7276 6572 0d0a 3a31 ystem=server..:1 0x0660: 3531 3732 3730 3032 3834 3038 3239 3338 5172700284082938 0x0670: 3030 0d0a 2a31 0d0a 2b31 0d0a 2b69 6e6e 00..*1..+1..+inn 0x0680: 6f64 625f 6d65 7472 6963 735f 696e 6e6f odb_metrics_inno 0x0690: 6462 5f72 776c 6f63 6b5f 7378 5f6f 735f db_rwlock_sx_os_ 0x06a0: 7761 6974 735f 636e 7472 5f76 616c 7565 waits_cntr_value 0x06b0: 2061 6c69 6173 3d6d 7973 716c 6462 2063 .alias=mysqldb.c 0x06c0: 6f6c 6c65 6374 6f72 3d6d 7973 716c 2d61 ollector=mysql-a 0x06d0: 6b75 2d73 6f6e 6172 2d36 6238 6635 3839 ku-sonar-6b8f589 0x06e0: 6636 642d 6e74 6a70 7120 686f 7374 3d6d f6d-ntjpq.host=m 0x06f0: 7973 716c 3031 2d6d 7973 716c 206e 616d ysql01-mysql.nam 0x0700: 6573 7061 6365 3d64 6566 6175 6c74 2070 espace=default.p 0x0710: 6f64 3d6d 7973 716c 2d61 6b75 2d73 6f6e od=mysql-aku-son 0x0720: 6172 2d36 6238 6635 3839 6636 642d 6e74 ar-6b8f589f6d-nt 0x0730: 6a70 7120 5375 6273 7973 7465 6d3d 7365 jpq.Subsystem=se 0x0740: 7276 6572 0d0a 3a31 3531 3732 3730 3032 rver..:151727002 0x0750: 3834 3038 3239 3631 3030 0d0a 2a31 0d0a 8408296100..*1.. 0x0760: 2b30 0d0a 2b69 6e6e 6f64 625f 6d65 7472 +0..+innodb_metr 0x0770: 6963 735f 646d 6c5f 696e 7365 7274 735f ics_dml_inserts_ 0x0780: 636e 7472 5f76 616c 7565 2061 6c69 6173 cntr_value.alias 0x0790: 3d6d 7973 716c 6462 2063 6f6c 6c65 6374 =mysqldb.collect 0x07a0: 6f72 3d6d 7973 716c 2d61 6b75 2d73 6f6e or=mysql-aku-son 0x07b0: 6172 2d36 6238 6635 3839 6636 642d 6e74 ar-6b8f589f6d-nt 0x07c0: 6a70 7120 686f 7374 3d6d 7973 716c 3031 jpq.host=mysql01 0x07d0: 2d6d 7973 716c 206e 616d 6573 7061 6365 -mysql.namespace 0x07e0: 3d64 6566 6175 6c74 2070 6f64 3d6d 7973 =default.pod=mys 0x07f0: 716c 2d61 6b75 2d73 6f6e 6172 2d36 6238 ql-aku-sonar-6b8 0x0800: 6635 3839 6636 642d 6e74 6a70 7120 5375 f589f6d-ntjpq.Su 0x0810: 6273 7973 7465 6d3d 646d 6c0d 0a3a 3135 bsystem=dml..:15 0x0820: 3137 3237 3030 3238 3430 3832 3938 3530 1727002840829850 0x0830: 300d 0a2a 310d 0a2b 3232 0d0a 2b69 6e6e 0..*1..+22..+inn 0x0840: 6f64 625f 6d65 7472 6963 735f 646d 6c5f odb_metrics_dml_ 0x0850: 6465 6c65 7465 735f 636e 7472 5f76 616c deletes_cntr_val 0x0860: 7565 2061 6c69 6173 3d6d 7973 716c 6462 ue.alias=mysqldb 0x0870: 2063 6f6c 6c65 6374 6f72 3d6d 7973 716c .collector=mysql 0x0880: 2d61 6b75 2d73 6f6e 6172 2d36 6238 6635 -aku-sonar-6b8f5 0x0890: 3839 6636 642d 6e74 6a70 7120 686f 7374 89f6d-ntjpq.host 0x08a0: 3d6d 7973 716c 3031 2d6d 7973 716c 206e =mysql01-mysql.n 0x08b0: 616d 6573 7061 6365 3d64 6566 6175 6c74 amespace=default 0x08c0: 2070 6f64 3d6d 7973 716c 2d61 6b75 2d73 .pod=mysql-aku-s 0x08d0: 6f6e 6172 2d36 6238 6635 3839 6636 642d onar-6b8f589f6d- 0x08e0: 6e74 6a70 7120 5375 6273 7973 7465 6d3d ntjpq.Subsystem= 0x08f0: 646d 6c0d 0a3a 3135 3137 3237 3030 3238 dml..:1517270028 0x0900: 3430 3833 3031 3630 300d 0a2a 310d 0a2b 408301600..*1..+ 0x0910: 300d 0a2b 696e 6e6f 6462 5f6d 6574 7269 0..+innodb_metri 0x0920: 6373 5f64 6d6c 5f75 7064 6174 6573 5f63 cs_dml_updates_c 0x0930: 6e74 725f 7661 6c75 6520 616c 6961 733d ntr_value.alias= 0x0940: 6d79 7371 6c64 6220 636f 6c6c 6563 746f mysqldb.collecto 0x0950: 723d 6d79 7371 6c2d 616b 752d 736f 6e61 r=mysql-aku-sona 0x0960: 722d 3662 3866 3538 3966 3664 2d6e 746a r-6b8f589f6d-ntj 0x0970: 7071 2068 6f73 743d 6d79 7371 6c30 312d pq.host=mysql01- 0x0980: 6d79 7371 6c20 6e61 6d65 7370 6163 653d mysql.namespace= 0x0990: 6465 6661 756c 7420 706f 643d 6d79 7371 default.pod=mysq 0x09a0: 6c2d 616b 752d 736f 6e61 722d 3662 3866 l-aku-sonar-6b8f 0x09b0: 3538 3966 3664 2d6e 746a 7071 2053 7562 589f6d-ntjpq.Sub 0x09c0: 7379 7374 656d 3d64 6d6c 0d0a 3a31 3531 system=dml..:151 0x09d0: 3732 3730 3032 3834 3038 3330 3430 3030 7270028408304000 0x09e0: 0d0a 2a31 0d0a 2b30 0d0a 2b69 6e6e 6f64 ..*1..+0..+innod 0x09f0: 625f 6d65 7472 6963 735f 736f 6e61 725f b_metrics_sonar_ 0x0a00: 7363 7261 7065 5f64 7572 6174 696f 6e5f scrape_duration_ 0x0a10: 6d69 6c6c 6973 6563 6f6e 6473 2061 6c69 milliseconds.ali 0x0a20: 6173 3d6d 7973 716c 6462 2063 6f6c 6c65 as=mysqldb.colle 0x0a30: 6374 6f72 3d6d 7973 716c 2d61 6b75 2d73 ctor=mysql-aku-s 0x0a40: 6f6e 6172 2d36 6238 6635 3839 6636 642d onar-6b8f589f6d- 0x0a50: 6e74 6a70 7120 686f 7374 3d6d 7973 716c ntjpq.host=mysql 0x0a60: 3031 2d6d 7973 716c 0d0a 3a31 3531 3732 01-mysql..:15172 0x0a70: 3730 3032 3834 3038 3330 3634 3030 0d0a 70028408306400.. 0x0a80: 2a31 0d0a 2b31 0d0a *1..+1.. " __label__bug clear print & error when restarting Print output & error is not cleared when restarting. __label__enhancement Implement presenter view Deck.js has support for a presenter view and a timer. We should implement that. __label__bug Dropdown menu for list view items might be not visible on small screen sizes __label__bug Write a tiny extension to do that? Or use a `custom.js` ? It should be enough. Cf. [this page on the doc](https://jupyter-notebook.readthedocs.io/en/latest/examples/Notebook/JavaScript%20Notebook%20Extensions.html#custom.js) "__label__enhancement As a User, I want to be able to change the color of a category " "__label__enhancement update pinv calls The `pinv` calls use low level lapack wrappers. There are several issues with this: 1. difficulty to maintain #216, #209, #213 2. speed -- we make a claim that it's faster (see below) 3. code bloat This https://gist.github.com/lukeolson/529c010c475fdaca9e741ddc2dba3b43 ![test](https://user-images.githubusercontent.com/1615863/35699170-e4031694-0754-11e8-91a8-f0677d541ab3.png) Suggests simply using `numpy.linalg.pinv` @jbschroder what do you think" __label__enhancement Damage indicator detection and blocking Detect LabyMod plug-ins and block them. "__label__enhancement More extensive test suites ``` It would be nice to run the Checker Framework on more extensive test suites that exercise more of the Java language. This would help us to help discover crashes due to linguistic corner cases, before users do. One possibility would be to run the Checker Framework on a test suite for a compiler, such as javac, eclipsec, or gcj. ``` Original issue reported on code.google.com by `michael.ernst@gmail.com` on 29 Mar 2015 at 10:45 " __label__bug Button to delete predefined values doesn't show when empty list of predefined values ![2018-02-02_09-35-02](https://user-images.githubusercontent.com/7633572/35723955-64708634-07fc-11e8-906a-eb46ac722e3d.gif) "__label__enhancement [TW-92] Lunar Calendar Implementation _Benjamin Weber on 2013-11-21T00:19:17Z says:_ _WHAT does the new feature mean or enable?_ It adds lunar calendar support to task: <pre> task add sched:1qmoon due:2ndfullmoon </pre> This task is scheduled for next first quarter of moon event, due on second next full moon. It considers a moon calendar qualified task into a calendar based one automatically depending on geo-location specified in taskrc. Consequently, supports people traveling around the globe, given the right geo-location setting. _WHICH new reports are required needed?_ None. _WHO benefits from this feature?_ * People who want to harmonize with the natural 13 phases of the moon * People NOT following solar calendars: Chinese, Muslims, Hindu, Saudi Arabians (lunar calendar is the official one), ancient Chinese, ancient Babylonians, ancient Greek, ancient Jews * People following solar calendars and valuing the power of the moon (in alignment to 'energy level' criterion of GTD [[Methodologies|methodology]]). * Hunters & fishers: https://en.wikipedia.org/wiki/Solunar_theory * ""Even though the Gregorian calendar is in common and legal use, lunar calendars serve to determine traditional holidays in parts of the world such as India, China, Korea, Japan, Vietnam and Nepal. Some examples include Ramadan, Diwali, Chinese New Year/Tết (Vietnamese New Year), Mid-Autumn Festival/Chuseok and Nepal Sambat."" https://en.wikipedia.org/wiki/Lunar_calendar#Lunisolar_calendars * Astrologers _HOW does the feature interact with existing features?_ It interacts with all features touching any operator of <date> type. _HOW does the feature retain the simplicity and efficiency of the core features?_ Hey, it's just a calendar. The toy of the church, kings and lords of the world! _HOW can I make others realize they cannot live without it?_ Look up to the starry sky at full moon. _Is my feature any more than just a built-in UDA?_ Are you questioning the existence of the moon? It is the oldest calendar on earth: http://www.environmentalgraffiti.com/featured/oldest-lunar-calendar/15204 Those who use a moon calendar also feel that it’s much more natural to count your time according to the moon phases, not the sun. http://u.cs.biu.ac.il/~belenka/Newton-calendar.pdf http://www.femguide.co.uk/what-is-the-moon-calendar-and-why-do-people-follow-it_86323 http://www.lawoftime.org/thirteenmoon/tutorial.html http://calendopedia.com/lunar.htm http://www.infoplease.com/ipa/A0002061.html http://www.infoplease.com/calendar/gregorian.html http://www.paganspath.com/magik/lunarcal.htm https://pypi.python.org/pypi/astronomia/0.2.3-1 https://pypi.python.org/pypi/lunardate/0.1.4 https://pypi.python.org/pypi/transdate/1.1.1 http://rubyforge.org/projects/astromoon/" "__label__bug block not available Saw this from https://api.steemitdev.com, need to verify if jussi or steemd issue. ``` [LIVE] Got block 19469652 at 2018-01-31T20:43:00 -- 54 txs, 15 posts, 21 edits, 11 payouts, 11 accounts, 12 follows -- 565ms [STEEM][120ms] get_block[1] -- 8.0x par (40/5) [LIVE] block 19469653 not available (try 1). delay 1s. head: 19469653. [LIVE] 1 blocks behind... [STEEM][161ms] get_block[1] -- 16.2x par (81/5) [LIVE] block 19469653 not available (try 2). delay 1s. head: 19469653. [LIVE] 1 blocks behind... [LIVE] block 19469653 not available (try 3). delay 1s. head: 19469653. [LIVE] 1 blocks behind... [LIVE] block 19469653 not available (try 4). delay 1s. head: 19469653. dgp: {'dgpo': {'head_block_number': 19469654, 'head_block_id': '012915564f264d266be1ff6f68778dc9314563c2', 'time': '2018-01-31T20:43:06', 'current_witness': 'furion', 'virtual_supply': '264877116.447 STEEM', 'current_supply': '263457461.991 STEEM', 'current_sbd_supply': '7744215.061 SBD', 'total_vesting_fund_steem': '187521519.670 STEEM', 'total_vesting_shares': '383675614369.333144 VESTS', 'pending_rewarded_vesting_shares': '300958432.689068 VESTS', 'pending_rewarded_vesting_steem': '146298.601 STEEM', 'sbd_interest_rate': 0, 'sbd_print_rate': 10000, 'maximum_block_size': 65536, 'current_aslot': 19532062, 'recent_slots_filled': '340282366920938463463374607431768211455', 'participation_count': 128, 'last_irreversible_block_num': 19469632, 'vote_power_reserve_rate': 10, 'average_block_size': 16442, 'current_reserve_ratio': 1233097, 'max_virtual_bandwidth': '1629174859038720000'}, 'usd_per_steem': '5.455000', 'sbd_per_steem': '0.990286', 'steem_per_mvest': '488.750165'} ........ [LIVE] 5 blocks behind... [LIVE] block 19469653 not available (try 49). delay 1s. head: 19469657. dgp: {'dgpo': {'head_block_number': 19469673, 'head_block_id': '01291569e2d18da46e9585b5c8ceb36b08c99923', 'time': '2018-01-31T20:44:03', 'current_witness': 'clayop', 'virtual_supply': '264877158.871 STEEM', 'current_supply': '263457496.704 STEEM', 'current_sbd_supply': '7744257.126 SBD', 'total_vesting_fund_steem': '187521626.119 STEEM', 'total_vesting_shares': '383675818950.228320 VESTS', 'pending_rewarded_vesting_shares': '300743840.585707 VESTS', 'pending_rewarded_vesting_steem': '146193.722 STEEM', 'sbd_interest_rate': 0, 'sbd_print_rate': 10000, 'maximum_block_size': 65536, 'current_aslot': 19532081, 'recent_slots_filled': '340282366920938463463374607431768211455', 'participation_count': 128, 'last_irreversible_block_num': 19469652, 'vote_power_reserve_rate': 10, 'average_block_size': 16425, 'current_reserve_ratio': 1238376, 'max_virtual_bandwidth': '1636149504245760000'}, 'usd_per_steem': '5.455000', 'sbd_per_steem': '0.996499', 'steem_per_mvest': '488.750181'} [LIVE] 5 blocks behind... [STEEM][221ms] get_block[1] -- 28.4x par (141/5) [LIVE] Got block 19469653 at 2018-01-31T20:43:03 -- 86 txs, 6 posts, 23 edits, 5 payouts, 11 accounts, 14 follows -- 621ms [LIVE] 4 blocks behind... [LIVE] Got block 19469654 at 2018-01-31T20:43:06 -- 64 txs, 13 posts, 24 edits, 13 payouts, 5 accounts, 21 follows -- 616ms [LIVE] 3 blocks behind... ```" "__label__bug /maps/:map/:layer/:z/:x/:y not filtering to correct layer After `atlas` was implemented the layer handler received an incorrect implementation for filtering by only layer. Currently the endpoint is filtering by Zoom, but needs to filter by just layer. " __label__enhancement Add logic for the rest of Rosenbergs sources __label__bug Swift emits duplicate types for multiple top-levels Discovered in [typeguard/typed-spotify/swift4/spotify.swift](https://github.com/typeguard/typed-spotify/blob/master/swift4/spotify.swift#L65). This is the output of quicktype generating types for multiple top-levels. The same duplication is not present in [typeguard/typed-spotify/types/spotify.txt](https://github.com/typeguard/typed-spotify/blob/master/types/spotify.txt). "__label__bug Save draft twice and attachment appears to be lost Steps to reproduce the issue: - create a new answer - choose a file as attachment - click ""Save Draft"". The file is shown as attached - click ""Save Draft"" again. The screen shows ""No file chosen"" and user can choose another file to attach. But in fact the file is still linked to the answer. Can be verified by reloading the page. Seems that AngularJS is not reloading the controller when user clicked on ""Save Draft"" if the current page is already at `/answer/{answer_id}/edit`. One way to fake a reload is to append a `/` after `edit` at https://github.com/ubc/compair/blob/966729f2db4041d04efa8d64f88c1529d7cf78f5/compair/static/modules/answer/answer-module.js#L260 Any other suggestion?" "__label__enhancement Function to easily create dbOutput without full data access - currently, `dbOutput` is created just before the start of doing the actual simulation runs by looping over `do_OneSite` - the creation of the output database can be time consuming - having it so tightly coupled to the actual simulation runs can be a wast of computation time when processed on a cluster --> need a simply function to locally create output database without access to all input data (e.g., weather database)" "__label__enhancement Show all entries which are not in a group Currently, it is very hard to determine which entries are not in a group. This should be made easier as it helps to sort the remaining entries into the groups. " "__label__bug AbsoluteQuantitation::optimizeCalibrationCurves() pyopenms bindings ### Description all returned lists of `AbsoluteQuantitationStandard::featureConcentrations` are encapsulated in an extra list layer (e.g., `[[...]]` instead of `[...]`) ### Fix remove the pyopenms bindings" __label__enhancement [question] Nats watcher for casbin Are you planning to support listening to [Nats](https://github.com/nats-io/go-nats) events in casbin for policy update? "__label__bug LDAP: SID is shown instead of username when searching Currently if performing a search with any criteria, the LDAP SID's are displayed instead of the usernames." "__label__bug fits2caom2 help is inaccurate. The -help content suggest that -test does not persist to the database but really -test turns off writing to a file. Are there cases where fits2caom2 writes to a database anymore? option A: remove -test but that might break code that expects -test option B: Change the behaviour so -test still writes the .xml (also might break current usgage) option C: Change the help line to indicate that no file will be write to -out, impacts likely minimal." __label__enhancement page not found "__label__bug DateHelper.isValid has wrong logic for ""MM/dd/yy"" format Dates that are of format `MM/dd/yy` are being seen as `MM/dd/yyyy` which is wrong." "__label__bug EncryptPad cannot open a saved encrypted empty file To reproduce this issue, an **empty** file is encrypted with passphrase. When it is decrypted, ""Unknown error"" is returned. This is a regression issue. The scenario worked in 0.3.2.5." "__label__bug Gracefully handle when an non-existing schema file is provided At the moment this causes a crash: ``` $ graphql-schema-linter invalid.graphql It looks like you may have hit a bug in graphql-schema-linter. It would be super helpful if you could report this here: https://github.com/cjoudrey/graphql-schema-linter/issues/new Error: ENOENT: no such file or directory, open 'invalid.graphql' at Object.fs.openSync (fs.js:646:18) at fs.readFileSync (fs.js:551:33) at getSchemaFromFile (/Users/cjoudrey/.config/yarn/global/node_modules/graphql-schema-linter/lib/configuration.js:191:31) at /Users/cjoudrey/.config/yarn/global/node_modules/graphql-schema-linter/lib/configuration.js:196:22 at Array.reduce (<anonymous>) at getSchemaSegmentsFromFiles (/Users/cjoudrey/.config/yarn/global/node_modules/graphql-schema-linter/lib/configuration.js:195:16) at Configuration.getSchema (/Users/cjoudrey/.config/yarn/global/node_modules/graphql-schema-linter/lib/configuration.js:90:24) at run (/Users/cjoudrey/.config/yarn/global/node_modules/graphql-schema-linter/lib/runner.js:41:30) at Object.<anonymous> (/Users/cjoudrey/.config/yarn/global/node_modules/graphql-schema-linter/lib/cli.js:15:32) at Module._compile (module.js:635:30) ```" "__label__bug aria-hidden not removed if another instance with ariaHideApp=false is open ### Summary: If you have two modals, one with `ariaHideApp` set to `false`, the other with `ariaHideApp` set to `true` and you then close the modal with `ariaHideApp` set to `true` the `aria-hidden` attribute will remain set to `true` on the app element when it should be false. ### Steps to reproduce: 1. Create two instances of `<Modal>` one with `ariaHideApp` set to `false`, the other with `ariaHideApp` set to `true` 2. Close the `<Modal>` instance with `ariaHideApp` set to `true` 3. Observe the `aria-hidden` attribute is still applied to the app element ### Expected behavior: The `aria-hidden` attribute should be removed from the app element when there are no longer any visible instances with `ariaHideApp` set to `true`. ### Link to example of issue: Some unit tests I wrote to verify the problem in `master` ``` it(""removes aria-hidden when closed and another modal with ariaHideApp set to false is open"", () => { const rootNode = document.createElement(""div""); document.body.appendChild(rootNode); const appElement = document.createElement(""div""); document.body.appendChild(appElement); Modal.setAppElement(appElement); const initialState = ( <div> <Modal isOpen={true} ariaHideApp={false} id=""test-1-modal-1"" /> <Modal isOpen={true} ariaHideApp={true} id=""test-1-modal-2"" /> </div> ); ReactDOM.render(initialState, rootNode); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); const updatedState = ( <div> <Modal isOpen={true} ariaHideApp={false} id=""test-1-modal-1"" /> <Modal isOpen={false} ariaHideApp={true} id=""test-1-modal-2"" /> </div> ); ReactDOM.render(updatedState, rootNode); should(appElement.getAttribute(""aria-hidden"")).not.be.ok(); ReactDOM.unmountComponentAtNode(rootNode); }); it(""maintains aria-hidden when closed and another modal with ariaHideApp set to true is open"", () => { const rootNode = document.createElement(""div""); document.body.appendChild(rootNode); const appElement = document.createElement(""div""); document.body.appendChild(appElement); Modal.setAppElement(appElement); const initialState = ( <div> <Modal isOpen={true} ariaHideApp={true} id=""test-1-modal-1"" /> <Modal isOpen={true} ariaHideApp={true} id=""test-1-modal-2"" /> </div> ); ReactDOM.render(initialState, rootNode); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); const updatedState = ( <div> <Modal isOpen={true} ariaHideApp={true} id=""test-1-modal-1"" /> <Modal isOpen={false} ariaHideApp={true} id=""test-1-modal-2"" /> </div> ); ReactDOM.render(updatedState, rootNode); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); ReactDOM.unmountComponentAtNode(rootNode); }); it(""removes aria-hidden when unmounted without close and second modal with ariaHideApp=false is open"", () => { const appElement = document.createElement(""div""); document.body.appendChild(appElement); Modal.setAppElement(appElement); renderModal({ isOpen: true, ariaHideApp: false, id: ""test-2-modal-1"" }); should(appElement.getAttribute(""aria-hidden"")).not.be.ok(); renderModal({ isOpen: true, ariaHideApp: true, id: ""test-2-modal-2"" }); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); unmountModal(); should(appElement.getAttribute(""aria-hidden"")).not.be.ok(); }); it(""maintains aria-hidden when unmounted without close and second modal with ariaHideApp=true is open"", () => { const appElement = document.createElement(""div""); document.body.appendChild(appElement); Modal.setAppElement(appElement); renderModal({ isOpen: true, ariaHideApp: true, id: ""test-3-modal-1"" }); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); renderModal({ isOpen: true, ariaHideApp: true, id: ""test-3-modal-2"" }); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); unmountModal(); appElement.getAttribute(""aria-hidden"").should.be.eql(""true""); }); ``` ### Additional notes: " "__label__bug [TW-606] task shell needs tab completion, history and color _David Patrick on 2009-11-07T11:27:47Z says:_ right now, task shell, which promises to deliver faster data entry, loses the tab-completion, and thereby some of it's promise. Maintaining a history list, to be scrolled through with the up-and-down arrows, would also be a boon. Answering prompts in shell-mode (Y,n,a,q) should react immediately, and not require <enter>" "__label__bug [TW-898] Double hyphen mishandled in quoted annotation. _John Florian on 2010-10-04T16:44:27Z says:_ I tried to annotate a task using: <pre> $ task annotate 62 ""This may be better handled -- and perhaps already is -- within puppet."" Annotated 62 with 'This may be better handled and perhaps already is -- within puppet.' </pre> Notice what happened to the first double hyphen, which in this case is being used as a poor-mans em dash. Probably not worth monkeying with until the new parser arrives, but thought it worth noting." __label__question Track movement improvement Hi have been busy setting up hardware and am still [1] but fun moments increase: Jam around. Doing so there is a thing that - ehh is not that - lets say - could be improved and maybe there is some time where there are some spare cycles left for (watch out here comes yet another wishlist): * add keyboard shortcuts for all track movements e.g Ctrl (or Alt have no idea what others do here) + Arrow Up for moving track up. * if no clip is selected in it: why not delete current track by pressing 'Del'? * guess this is more effort: How about moving track up and down by drag 'n drop (if there is something planned about selecting multiple tracks - I'd prefer 'Shift)? [1] https://drive.google.com/drive/folders/1VUMqcRO8WxWpwMKYy06WZPZcSgrokq0h?usp=sharing "__label__enhancement Allow verification for a candidate's event when editing the event's information - baptismal certificate, retreat verification, sponsor_covenant " "__label__bug azurerm_virtual_machine_scale_set.scaleset: diffs didn't match during apply ``` Terraform Version: 0.11.3 Resource ID: azurerm_virtual_machine_scale_set.scaleset Mismatch reason: attribute mismatch: network_profile.3458559321.ip_configuration.# Diff One (usually from plan): *terraform.InstanceDiff{mu:sync.Mutex{state:0, sema:0x0}, Attributes:map[string]*terraform.ResourceAttrDiff{""network_profile.~3458559321.ip_configuration.0.primary"":*terraform.ResourceAttrDiff{Old:"""", New:"""", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.accelerated_networking"":*terraform.ResourceAttrDiff{Old:"""", New:"""", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.0.load_balancer_backend_address_pool_ids.#"":*terraform.ResourceAttrDiff{Old:""0"", New:""1"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.0.public_ip_address_configuration.#"":*terraform.ResourceAttrDiff{Old:""0"", New:""0"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.0.load_balancer_backend_address_pool_ids.2187753327"":*terraform.ResourceAttrDiff{Old:""/subscriptions/93c2ebb5-31e9-487d-9f19-f1716b0673ce/resourceGroups/historical-filters/providers/Microsoft.Network/loadBalancers/agolo-staging-historical-filters/backendAddressPools/BackEndAddressPool"", New:"""", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.0.load_balancer_backend_address_pool_ids.#"":*terraform.ResourceAttrDiff{Old:""1"", New:""0"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.primary"":*terraform.ResourceAttrDiff{Old:""true"", New:""false"", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.0.name"":*terraform.ResourceAttrDiff{Old:"""", New:""historical-filters-ipconfig"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.primary"":*terraform.ResourceAttrDiff{Old:"""", New:""true"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.#"":*terraform.ResourceAttrDiff{Old:""1"", New:""0"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.network_security_group_id"":*terraform.ResourceAttrDiff{Old:"""", New:"""", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.accelerated_networking"":*terraform.ResourceAttrDiff{Old:""false"", New:""false"", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.0.subnet_id"":*terraform.ResourceAttrDiff{Old:"""", New:""/subscriptions/93c2ebb5-31e9-487d-9f19-f1716b0673ce/resourceGroups/general/providers/Microsoft.Network/virtualNetworks/agolo/subnets/historical-filters-subnet"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.0.primary"":*terraform.ResourceAttrDiff{Old:""false"", New:""false"", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.#"":*terraform.ResourceAttrDiff{Old:""0"", New:""1"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil),RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.0.public_ip_address_configuration.#"":*terraform.ResourceAttrDiff{Old:""0"", New:""0"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.0.subnet_id"":*terraform.ResourceAttrDiff{Old:""/subscriptions/93c2ebb5-31e9-487d-9f19-f1716b0673ce/resourceGroups/general/providers/Microsoft.Network/virtualNetworks/agolo/subnets/historical-filters-subnet"", New:"""", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.name"":*terraform.ResourceAttrDiff{Old:"""", New:""historical-filters-nic"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.network_security_group_id"":*terraform.ResourceAttrDiff{Old:"""", New:"""", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.0.load_balancer_backend_address_pool_ids.2187753327"":*terraform.ResourceAttrDiff{Old:"""", New:""/subscriptions/93c2ebb5-31e9-487d-9f19-f1716b0673ce/resourceGroups/historical-filters/providers/Microsoft.Network/loadBalancers/agolo-staging-historical-filters/backendAddressPools/BackEndAddressPool"", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.~3458559321.ip_configuration.0.load_balancer_inbound_nat_rules_ids.#"":*terraform.ResourceAttrDiff{Old:"""", New:"""", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.ip_configuration.0.name"":*terraform.ResourceAttrDiff{Old:""historical-filters-ipconfig"", New:"""", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, ""network_profile.3458559321.name"":*terraform.ResourceAttrDiff{Old:""historical-filters-nic"", New:"""", NewComputed:false, NewRemoved:true, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}}, Destroy:false, DestroyDeposed:false, DestroyTainted:false, Meta:map[string]interface {}(nil)} Diff Two (usually from apply): *terraform.InstanceDiff{mu:sync.Mutex{state:0, sema:0x0}, Attributes:map[string]*terraform.ResourceAttrDiff(nil), Destroy:false, DestroyDeposed:false, DestroyTainted:false, Meta:map[string]interface {}(nil)} ```" __label__bug !get title bug Requesting the title myself provided me this in DM: ![discord_2018-01-21_17-51-59](https://user-images.githubusercontent.com/12276548/35196576-4a090a22-fed4-11e7-8407-bd7ec507169b.png) *If not clear: the 7 should not be there* "__label__question pos field shows '0'. # Guidelines to submit an issue <!-- Thank you for contributing to urcli by opening an issue! Please review this guide before submitting your issue. - If you are opening an issue because you would like to propose a new feature, write the title as ""Feature Request:"" followed by a short description of the feature. - Make sure that you are using the correct version of Node.js. You need to have version v6+ for the CLI to work. - Also ensure that your new issue conforms to the contribution guidelines: https://github.com/trolster/urcli/blob/master/.github/CONTRIBUTING.md --> #### I'm opening this issue because: <!-- Delete the reasons that don't apply. --> - urcli is doing something I don't understand. #### What's going wrong? The pos field in the queue table after urcli assign x is entered, shows 0 for the queue position for all queued projects. ![untitled](https://user-images.githubusercontent.com/13712151/34052755-58d5648c-e189-11e7-863d-57d1e2a9f790.png) #### How can the `urcli` team reproduce the problem? urcli assign x, <!-- Give a complete description of how to reproduce the problem. --> ### supporting information: <!-- The following information MUST be included. --> - [x] `node -v` prints: v8.9.3 - [x] `urcli -V` prints: 4.0.14 - [x] Windows, OS X/macOS, or Linux?: Windows 10 <!-- For feature requests, uncomment the section below. But first, review the existing feature requests and make sure there isn't one that already describes the feature you'd like to see added: https://github.com/trolster/urcli/labels/enhancement. --> <!-- #### What's the feature? #### What problem is the feature intended to solve? #### Is this feature similar to an existing feature in another tool? #### Is this a feature you're prepared to implement, with support from the urcli team? --> Thank you for this great tool! It is a blessing to many people! " __label__bug PIREP hours can't be changed Also need to recalculate pilot hours "__label__bug Django-dynamic-preferences update leads to installation issues Django-dynamic-preferences must have done some refactoring with version 1.4, because on new installs we now get the following error when trying to load dynamic_preferences.types.Section: `ImportError: Cannot import name 'Section'` The temporary solution is to downgrade django-dynamic-preferences to version 1.3.3 on new installs, but I'm guessing this is a simple fix, so I'd like to just go ahead and find the new location and update our code." __label__enhancement Scrape events from Legistar Complete the OaklandEventScraper to pull all event and agenda data. "__label__enhancement Feature: ""neues Projekt"" 1. Schritt: als Route ins Backend einbauen (POST /projects) 2. Schritt: per GUI (Prio 3)" "__label__enhancement changes to be made in ad-post page Changes to be made in the forms **@NicestRudeGuy** 1. Remove Post your ad heading from the form and make it a page-header 2. Put asterisk mark in front of every required field in registration and post add form. 3. Give a label under the form Required=* 4. assign label to each field.. Right now the label is not referring to the field 5. Align *Free Listing is valid Upto 1 month to the left of the form 6. Make button of width 100% to the form width 7. Increase column width of the form 8. Remove the background color and border from the form 9. Increase the height of each of the field to 35 or 40px which ever is suitable 10. Change the place holder of each field and make it start with ""Enter"" 11. Put column in front of each label 12. Add an error field in front of the each field. See data-error attribute usage for this. Please make the changes for every form." __label__bug Slider ends play double samples __label__bug ClassFinder.php removed in laravel 5.4 In Laravel 5.4 the Illuminate\Filesystem\ClassFinder.php was removed. Annotations use this class and nothing works! > Class Illuminate\Filesystem\ClassFinder does not exist "__label__enhancement [TW-1026] Request a dateformat.journal .taskrc variable _Cory Donnelly on 2011-01-31T22:40:53Z says:_ In the current build of 1.9.4, journal date formats are specified by dateformat. Unless you guys have ideas about going in a different direction, I'd like a separate dateformat for this. <pre> $ cat ~/.taskrc | grep dateformat | grep Prefer dateformat=Y&M&D&H:N # Preferred input and display date format dateformat.holiday=Y+M+D # Preferred input date format for holidays dateformat.report=Y_M_D_H:N # Preferred display date format for reports dateformat.annotation=Y^M^D^H:N # Preferred display date format for reports $ task info 1 Name Value ID 1 Description Foo Status Pending Start 2011&01&31&22:34 UUID b459db7c-de84-46e9-9c5b-106f442726f9 Entered 2011&01&31&22:32 (3 mins) Date Modification 2011&01&31&22:32 start set to '2011&01&31&22:32' </pre>" __label__enhancement Include Option to Delete Events on 'My Events' Page Include Option to Delete Events on 'My Events' Page. A trash icon could accompany the tournaments listed on this page: https://www.battlepro.com/account/my-events This will help tournament organizers better manage the drafts they have saved that are not being used. ![delete](https://user-images.githubusercontent.com/6005869/29753660-4c1d630c-8b44-11e7-8ed2-6da46ca25d1a.JPG) __label__enhancement Move pin and temperature threshold to config. Pin and temperature threshold configuration should move to `/usr/share`. __label__bug Can't access inherited elements of dialogue GUI This concerns the branch to break out the b26toolkit specific things from PyLabControl. go b26_load_dialogue.py and run. When the GUI opens try to create a Scriptiterator. You will get the following error *AttributeError: 'LoadDialogB26' object has no attribute 'txt_info'* So it seem like on can't access the elements on the GUI (even though they are clearly there) "__label__bug Sass resolves underscore vars wrongly We need to fix resolving `@import ""base""` -> `./_base.scss` Thinking of using https://github.com/dadish/sass-import-resolve." "__label__bug Décalage au passage de 180˚ La source 5 «accroche» au passage de 180˚. Voir la vidéo expédiée par courriel. Le SpatGRIS a l'air de bouger linéairement, mais la source saute d'un pas en arrière ou d'un pas en avant selon la direction. Problème de SpatGRIS? De transmission OSC? De ServerGRIS?" "__label__bug Non-Deterministic although random seed fixed SMAC is non-deterministic although it optimizes solution quality, the budget is limited by target algorithm runs and a random seed was given. In this setting, SMAC should have a deterministic behavior. " __label__enhancement gute devs und guter bot <p><strong>Feedback</strong><br><br><strong>Feedback report by KeinEmxl#3887 </strong><br><br><strong>Description</strong><br><br></p>Gute devs guter bot __label__enhancement Improve README.MD Refer ML+ repository "__label__bug `setenv(""LANG"", ...)` too late Alberto extended the `MultiLangMgr` to set the ""LANG"" environment variable in #4278. This is definitely the way to go, but doesn't fix the problem for me: ``` Version: 5.3-514-gac1238e7 Branch: dev Commit: ac1238e7 Commit date: 2018-01-22 Compiler: cc 6.3.0 Processor: x86_64 System: Linux Bit depth: 64 bits Gtkmm: V3.22.0 Lensfun: V0.3.2.0 Build type: release Build flags: -std=c++11 -march=native -Werror=unused-label -fopenmp -Werror=unknown-pragmas -Wall -Wno-unused-result -Wno-deprecated-declarations -O3 -DNDEBUG Link flags: -march=native OpenMP support: ON MMAP support: ON ``` If I place the `setenv()` in front of [`gtk_init()`](https://github.com/Beep6581/RawTherapee/blob/dev/rtgui/main.cc#L492) it's effective, but not after it. Best, Flössie" __label__enhancement Change threads number option "__label__bug Replace `delete` with `filter()` on deleteNote() function Make sure the proper key is being used for routing and displaying notes (basically, don't re-index the list but use a unique key for each object)" "__label__enhancement Update README.md Update the readme along the lines of [README.md](https://github.com/AutolabJS/AutolabJS/blob/master/README.md) for AutolabJS project. We need to create wiki pages for **Install and Use**, **Features**. Add hyperlinks to all the files created in issue #124. **Install and Use** page has to be created with reference to PR #120." "__label__enhancement [test-suite] Generate a test result file for the script for the initial setup of sanity test ### Expected behavior A test result file of the script run for the initial setup of sanity test would be nice. ### Actual behavior Results can be viewed only on the command line where the script is run as part of the step-by-step output, so, say you did a few more things in the command line, then wanted to check the results of the initial setup of sanity test, you may not be able to see it since your terminal window has a set number for the buffer. ### Steps to reproduce the problem * Run the script for the initial setup of sanity test ### Log/stack trace (use https://gist.github.com) ### Specs #### Version Studio Version Number: 3.1.0-SNAPSHOT-185754 Build Number: 185754002e81ef9d2c0599e72ff531132981ce14 Build Date/Time: 01-23-2018 09:31:33 -0500 #### OS OS X #### Browser " "__label__bug [TW-361] Terminal crashes when using taskwarrior's zsh completion _Ivan Freitas on 2013-08-25T03:35:28Z says:_ Trying to complete (almost) all taskwarrior's subcommands using the shipped zsh completion (taskwarrior 2.2.0, zsh 5.0.2) ends in the current terminal (urxvt) being closed due to task (zsh?) crashing. The issue has been noted and reported in the following locations: https://github.com/robbyrussell/oh-my-zsh/issues/2044 https://bbs.archlinux.org/viewtopic.php?pid=1306993" "__label__bug Visual Studio 2017 (15.5.6) Crash on Start-Up <!--- Provide a general summary of the issue in the Title above --> ## Expected Behavior Visual Studio 2017 (15.5.6) should start up completely (and not crash. heh.). ## Current Behavior Visual Studio 2017 loads and looks like it is going to complete at first but crashes with the Exit Program or Debug options. If Debug is chosen, it, of course, crashes again. Here is the event from the event log: Application: devenv.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.NullReferenceException at Amazon.AWSToolkit.ECS.Nodes.RootViewModel.BuildClient(Amazon.Runtime.AWSCredentials) at Amazon.AWSToolkit.Navigator.Node.ServiceRootViewModel..ctor(Amazon.AWSToolkit.Navigator.Node.IMetaNode, Amazon.AWSToolkit.Navigator.Node.IViewModel, System.String) at Amazon.AWSToolkit.ECS.Nodes.RootViewModel..ctor(Amazon.AWSToolkit.Account.AccountViewModel) at Amazon.AWSToolkit.ECS.Nodes.RootViewMetaNode.CreateServiceRootModel(Amazon.AWSToolkit.Account.AccountViewModel) at Amazon.AWSToolkit.Account.AccountViewModel.CreateServiceChildren() at Amazon.AWSToolkit.Navigator.NavigatorControl.updateActiveRegion() at Amazon.AWSToolkit.Navigator.NavigatorControl.onRegionChanged(System.Object, System.Windows.Controls.SelectionChangedEventArgs) at System.Windows.Controls.SelectionChangedEventArgs.InvokeEventHandler(System.Delegate, System.Object) at System.Windows.RoutedEventArgs.InvokeHandler(System.Delegate, System.Object) at System.Windows.RoutedEventHandlerInfo.InvokeHandler(System.Object, System.Windows.RoutedEventArgs) at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean) at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs) at System.Windows.UIElement.RaiseEvent(System.Windows.RoutedEventArgs) at System.Windows.Controls.ComboBox.OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs) at System.Windows.Controls.Primitives.Selector.InvokeSelectionChanged(System.Collections.Generic.List`1<ItemInfo>, System.Collections.Generic.List`1<ItemInfo>) at System.Windows.Controls.Primitives.Selector+SelectionChanger.End() at System.Windows.Controls.Primitives.Selector+SelectionChanger.SelectJustThisItem(ItemInfo, Boolean) at System.Windows.Controls.Primitives.Selector.OnSelectedItemChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean, System.Windows.OperationType) at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean) at Amazon.AWSToolkit.Navigator.NavigatorControl.setInitialRegionSelection() at Amazon.AWSToolkit.Navigator.NavigatorControl._ctlAccounts_PropertyChanged(System.Object, System.ComponentModel.PropertyChangedEventArgs) at Amazon.AWSToolkit.CommonUI.Components.RegisteredProfilesPicker._ctlCombo_SelectionChanged(System.Object, System.Windows.Controls.SelectionChangedEventArgs) at System.Windows.Controls.SelectionChangedEventArgs.InvokeEventHandler(System.Delegate, System.Object) at System.Windows.RoutedEventArgs.InvokeHandler(System.Delegate, System.Object) at System.Windows.RoutedEventHandlerInfo.InvokeHandler(System.Object, System.Windows.RoutedEventArgs) at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean) at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs) at System.Windows.UIElement.RaiseEvent(System.Windows.RoutedEventArgs) at System.Windows.Controls.ComboBox.OnSelectionChanged(System.Windows.Controls.SelectionChangedEventArgs) at System.Windows.Controls.Primitives.Selector.InvokeSelectionChanged(System.Collections.Generic.List`1<ItemInfo>, System.Collections.Generic.List`1<ItemInfo>) at System.Windows.Controls.Primitives.Selector+SelectionChanger.End() at System.Windows.Controls.Primitives.Selector+SelectionChanger.SelectJustThisItem(ItemInfo, Boolean) at System.Windows.Controls.Primitives.Selector.OnSelectedItemChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs) at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean, System.Windows.OperationType) at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean) at Amazon.AWSToolkit.CommonUI.Components.RegisteredProfilesPicker.set_SelectedAccount(Amazon.AWSToolkit.Account.AccountViewModel) at Amazon.AWSToolkit.Navigator.NavigatorControl.Initialize(Amazon.AWSToolkit.Navigator.Node.AWSViewModel) at Amazon.AWSToolkit.ToolkitFactory+<>c__DisplayClass8_0.<InitializeToolkit>b__1() at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate) at System.Windows.Threading.DispatcherOperation.InvokeImpl() at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(System.Object) at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(System.Object) at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean) at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean) at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) at MS.Internal.CulturePreservingExecutionContext.Run(MS.Internal.CulturePreservingExecutionContext, System.Threading.ContextCallback, System.Object) at System.Windows.Threading.DispatcherOperation.Invoke() at System.Windows.Threading.Dispatcher.ProcessQueue() at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef) at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef) at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object) at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate) at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32) at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr) ## Possible Solution Revert to 1.14.0.1? This one DOES work in our VS2017.5.5.6 IDE. We have already done this, in house, because someone had the habit of saving the VSIX files so we were able to get our shop up and running again. We have also advised our Devs to disable automatic updates for a while. ## Steps to Reproduce (for bugs) Start VS2017. Crash. ## Context Was trying to start up VS2017. It was affecting our entire Dev Team. Once they shutdown VS2017, for say, lunch, they came back to a broken VS2017 upon startup. ## Your Environment <!--- Include as many relevant details about the environment where the bug was discovered --> * AWSSDK.Core version used: * Service assembly and version used: * Operating System and version: Windows 10 Enterprise, 10.0.16299 * Visual Studio version: 2017, 15.5.6 Here's a dump of the info from VS2017: Microsoft Visual Studio Professional 2017 Version 15.5.6 VisualStudio.15.Release/15.5.6+27130.2027 Microsoft .NET Framework Version 4.7.02556 Installed Version: Professional Visual Basic 2017 00369-60000-00001-AA466 Microsoft Visual Basic 2017 Visual C# 2017 00369-60000-00001-AA466 Microsoft Visual C# 2017 Visual C++ 2017 00369-60000-00001-AA466 Microsoft Visual C++ 2017 Visual F# 4.1 00369-60000-00001-AA466 Microsoft Visual F# 4.1 Application Insights Tools for Visual Studio Package 8.10.01106.1 Application Insights Tools for Visual Studio ASP.NET and Web Tools 2017 15.0.31127.0 ASP.NET and Web Tools 2017 ASP.NET Core Razor Language Services 1.0 Provides languages services for ASP.NET Core Razor. ASP.NET Web Frameworks and Tools 2012 4.0.20601.0 For additional information, visit https://www.asp.net/ ASP.NET Web Frameworks and Tools 2017 5.2.51007.0 For additional information, visit https://www.asp.net/ Azure App Service Tools v3.0.0 15.0.31106.0 Azure App Service Tools v3.0.0 Azure Data Lake Node 1.0 This package contains the Data Lake integration nodes for Server Explorer. Azure Data Lake Tools for Visual Studio 2.3.2000.1 Microsoft Azure Data Lake Tools for Visual Studio Azure Data Lake Tools for Visual Studio 2.3.2000.1 Microsoft Azure Data Lake Tools for Visual Studio BusinessObjectEditor 1.0 Information about my package Common Azure Tools 1.10 Provides common services for use by Azure Mobile Services and Microsoft Azure Tools. ConvertToDevExtremeCommand Extension 1.0 ConvertToDevExtremeCommand Visual Studio Extension Detailed Info Cookiecutter 3.0.17320.1 Provides tools for finding, instantiating and customizing templates in cookiecutter format. CreateLayoutWizard 1.0 Create layout wizard. DevExpress.DeploymentTool 1.0 A useful tool for deploying DevExpress assemblies. DevExpress.ExpressApp.Design.DynamicPackage 1.0 DevExpress VSIX Package DevExpress.ExpressApp.DesignPackage 1.0 DevExpress VSIX Package DevExpress.Win.LayoutAssistant Extension 1.0 DevExpress.Win.LayoutAssistant Visual Studio Extension Detailed Info DevExtreme.Design 17.1.5 DevExtreme Visual Studio integration package Fabric.DiagnosticEvents 1.0 Fabric Diagnostic Events GitClientVSPackage Extension 1.0 GitClientVSPackage Visual Studio Extension Detailed Info JavaScript Language Service 2.0 JavaScript Language Service JavaScript Project System 2.0 JavaScript Project System JavaScript UWP Project System 2.0 JavaScript UWP Project System Microsoft Azure HDInsight Azure Node 2.3.2000.1 HDInsight Node under Azure Node Microsoft Azure Hive Query Language Service 2.3.2000.1 Language service for Hive query Microsoft Azure Service Fabric Tools for Visual Studio 2.0 Microsoft Azure Service Fabric Tools for Visual Studio Microsoft Azure Stream Analytics Language Service 2.3.2000.1 Language service for Azure Stream Analytics Microsoft Azure Stream Analytics Node 1.0 Azure Stream Analytics Node under Azure Node Microsoft Azure Tools 2.9 Microsoft Azure Tools for Microsoft Visual Studio 2017 - v2.9.51120.3 Microsoft Continuous Delivery Tools for Visual Studio 0.3 Simplifying the configuration of continuous build integration and continuous build delivery from within the Visual Studio IDE. Microsoft JVM Debugger 1.0 Provides support for connecting the Visual Studio debugger to JDWP compatible Java Virtual Machines Microsoft MI-Based Debugger 1.0 Provides support for connecting Visual Studio to MI compatible debuggers Microsoft Visual C++ Wizards 1.0 Microsoft Visual C++ Wizards Microsoft Visual Studio Tools for Containers 1.1 Develop, run, validate your ASP.NET Core applications in the target environment. F5 your application directly into a container with debugging, or CTRL + F5 to edit & refresh your app without having to rebuild the container. Microsoft Visual Studio VC Package 1.0 Microsoft Visual Studio VC Package Node.js Tools 1.4.11025.7 Adds support for developing and debugging Node.js apps in Visual Studio NuGet Package Manager 4.5.0 NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/. Python 3.0.17320.1 Provides IntelliSense, projects, templates, debugging, interactive windows, and other support for Python developers. Python - Django support 3.0.17320.1 Provides templates and integration for the Django web framework. Python - IronPython support 3.0.17320.1 Provides templates and integration for IronPython-based projects. Python - Profiling support 3.0.17320.1 Profiling support for Python projects. R Tools for Visual Studio 1.3.31108.1213 Provides project system, R Interactive window, plotting, and more for the R programming language. SQL Server Data Tools 15.1.61710.120 Microsoft SQL Server Data Tools ToolWindowHostedEditor 1.0 Hosting json editor into a tool window TSVN 1.9 Control TortoiseSVN from within Visual Studio TypeScript Tools 15.5.11025.1 TypeScript Tools for Microsoft Visual Studio Visual Studio Code Debug Adapter Host Package 1.0 Interop layer for hosting Visual Studio Code debug adapters in Visual Studio Visual Studio Tools for Universal Windows Apps 15.0.27130.2020 The Visual Studio Tools for Universal Windows apps allow you to build a single universal app experience that can reach every device running Windows 10: phone, tablet, PC, and more. It includes the Microsoft Windows 10 Software Development Kit. VisualSVN 6.0.4 Integration with Subversion version control. For more information about VisualSVN, see the VisualSVN website at http://www.visualsvn.com Copyright © 2017 VisualSVN Software Ltd. All rights reserved. WebJobs Tools v1.0.0 15.0.40108.0 WebJobs Tools v1.0.0 XtraReports package 1.0 XtraReports package These are sans AWS Tools of course. [logging]: http://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/net-dg-config-other.html" "__label__bug In-page search sometimes disappears in Chrome Sometimes in Chrome (I’m using 58 but I’ve seen this in previous versions), the in-page search disappears, making it difficult to go through all of the results. This doesn’t seem to happen in the smaller layout (when the black bar is gone) or in Safari. See the bug in this gif: ![canjs in-page search bug](https://cloud.githubusercontent.com/assets/10070176/26366209/0656de70-3f9f-11e7-83c9-69f26968b26c.gif)" "__label__bug [TW-28] Inserts spaces before punctuation characters _Matt Kraai says:_ When I run ""task add foo\'s bar."" using the head of the 2.0.0 branch, the description of the new task is ""foo 's bar .""." __label__enhancement Fetch all models when datasets are loaded When the datasets of a specific type are loaded (i. e. all image classifications) the associated models should be loaded directly to pre-populate the prediction dropdown. "__label__bug DSS put file for large files (async copy) on AWS may incorrectly fail etag comparison due to differing part size/count ### Expected behavior DSS put file should work for large (async copy) files on AWS regardless of the part size/count used to create the cloud source file. ### Actual behavior When a large AWS source file was copied into the source bucket using a multipart size/count different than the DSS uses for the async copy, the put file operation incorrectly fails its final etag comparison, because the part size/count is factored into the etag computation. This may be seen in CloudWatch logs for `dss-s3-copy-write-metadata-sfn` as follows: ``` : AssertionError Traceback (most recent call last): File ""/var/task/domovoi/app.py"", line 127, in __call__ result = handler(event, context) File ""/var/task/domovoilib/dss/stepfunctions/s3copyclient/implementation.py"", line 196, in join assert composite_etag == state[_Key.SOURCE_ETAG] AssertionError ``` If the assertion above is commented out, the DSS redployed, and the put file operation performed again, the differing etag values are as follows: ``` https://s3-us-west-2.amazonaws.com/cgp-commons-public/topmed_open_access/014a9de5-cb88-5e37-a196-b6e3ab30fff6/NWD759405.recab.cram Etag 1710ce7f6fc2a65e3bbe9292b772ad44-2512 Size 21070337861 https://s3-us-west-2.amazonaws.com/commons-dss-commons/blobs/594dc85f8a00d15b6e391a05c218ee3e4a8d8afc6a068fe8d198789ad2754927.1ebcba06ab845cbb429458ca32deb455f911a7d7.c0a1c3aa09428d075727422e7167f86d-314.275d7174 Etag c0a1c3aa09428d075727422e7167f86d-314 Size 21070337861 ``` The original source file and async copied file in the DSS bucket were both downloaded and verified to be identical using a full binary byte comparison. This was observed with data-store master commit 30c7cf1371a9edf2de16f93a3f1b22ed640b8b31 " "__label__bug Manualy selecting all items doesn't trigger ""Deselect All"" Manualy selecting all items doesn't trigger ""Deselect All"", although the button does deselect all." "__label__bug Show original URL in location bar If possible, show the original URL when in Reader Mode. See if urlbar bindings can be implemented." "__label__enhancement [TW-826] truncation _Paul Beckingham on 2009-05-25T20:48:59Z says:_ Add a new report column, truncated_description, which always fits in the available space, and is truncated with ""..."" at the end. T. Charles Yun" "__label__bug Some non ASCII characters are not encoded and script fails I have some user's Full Names which were imported from a CSV file and the non ASCII charcters were turned into symbols. Specifically names with characters with tildes like the following character: é The script will see non ASCII characters and fail, if possible could a fix be introduced to allow the script to skip the character or add a random character and continue to finish the report for later editing? The error I received was: _[!] There was a problem processing campaign ID 32! L.. Details: 'ascii' codec can't encode character u'\ufffd' in position 16: ordinal not in range(128)_ Quick search online says to use .encode() to encode a string instead of using str Source: https://stackoverflow.com/questions/9942594/unicodeencodeerror-ascii-codec-cant-encode-character-u-xa0-in-position-20 Thank you, JC" "__label__enhancement Migrate Article Inlined Images We need to migrate inlined images and rehost them in SFDC. 1. Scan article body for desk hosted images 2. Upload these images to Salesforce, retrieve new url 3. Replace the links in the article body 4. Upload article" "__label__bug Race condition in OuterPositionTracker We saw an error in the OuterPositionTracker, where the outer position iterator is being fetched while there are still reference counts. I think this might be caused because the query was tearing down due to a limit. Here is the stack. ``` com.google.common.base.VerifyException at com.google.common.base.Verify.verify(Verify.java:99) at com.facebook.presto.operator.PartitionedLookupSource$OuterPositionTracker$Factory.getOuterPositionIterator(PartitionedLookupSource.java:299) at com.facebook.presto.operator.PartitionedLookupSource$1.getOuterPositionIterator(PartitionedLookupSource.java:65) at com.facebook.presto.operator.PartitionedLookupSourceFactory.getOuterPositionIterator(PartitionedLookupSourceFactory.java:362) at com.facebook.presto.operator.LookupJoinOperatorFactory$PerLifespanData.lambda$new$1(LookupJoinOperatorFactory.java:315) at com.google.common.util.concurrent.AbstractTransformFuture$TransformFuture.doTransform(AbstractTransformFuture.java:239) at com.google.common.util.concurrent.AbstractTransformFuture$TransformFuture.doTransform(AbstractTransformFuture.java:229) at com.google.common.util.concurrent.AbstractTransformFuture.run(AbstractTransformFuture.java:130) at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:902) at com.google.common.util.concurrent.AbstractFuture.complete(AbstractFuture.java:813) at com.google.common.util.concurrent.AbstractFuture.setFuture(AbstractFuture.java:713) at com.google.common.util.concurrent.AbstractTransformFuture$AsyncTransformFuture.setResult(AbstractTransformFuture.java:221) at com.google.common.util.concurrent.AbstractTransformFuture$AsyncTransformFuture.setResult(AbstractTransformFuture.java:200) at com.google.common.util.concurrent.AbstractTransformFuture.run(AbstractTransformFuture.java:177) at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:902) at com.google.common.util.concurrent.AbstractFuture.complete(AbstractFuture.java:813) at com.google.common.util.concurrent.AbstractFuture.set(AbstractFuture.java:655) at com.google.common.util.concurrent.SettableFuture.set(SettableFuture.java:48) at com.facebook.presto.operator.ReferenceCount.release(ReferenceCount.java:55) at com.google.common.io.Closer.close(Closer.java:216) at com.facebook.presto.operator.LookupJoinOperator.close(LookupJoinOperator.java:514) at com.facebook.presto.operator.Driver.destroyIfNecessary(Driver.java:496) at com.facebook.presto.operator.Driver.tryWithLock(Driver.java:667) at com.facebook.presto.operator.Driver.processFor(Driver.java:272) at com.facebook.presto.execution.SqlTaskExecution$DriverSplitRunner.processFor(SqlTaskExecution.java:975) at com.facebook.presto.execution.executor.PrioritizedSplitRunner.process(PrioritizedSplitRunner.java:163) at com.facebook.presto.execution.executor.LegacyPrioritizedSplitRunner.process(LegacyPrioritizedSplitRunner.java:23) at com.facebook.presto.execution.executor.TaskExecutor$TaskRunner.run(TaskExecutor.java:492) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) ```" __label__enhancement Add proxy to workstation Add squid proxy to workstation to make it possible to tunnel connections through it using internal environment's DNS __label__enhancement 기본 socket.io 예제 실습(webchatting) + jquery mobile __label__enhancement Add _resets.scss Include new resets.scss file "__label__bug Don't allow up and down arrows to navigate tab lists. The LEFT and RIGHT arrow keys allow tab list navigation (i.e., Tab 1, Tab 2, Tab 3). However, an accessibility problem presents itself because users can also navigate to each tab list item using the UP and DOWN arrow keys (and this simultaneously scrolls the page up and down)" __label__enhancement Add README to the repo # Observed Behaviour README is missing # Expected Behaviour README should be provided to explain the ethos behind the project and its how its constructed. "__label__enhancement Better debugging info Output stuff like the following in the debug area at the bottom when running in design / development mode: - Whether the controller action was called or if it went straight to the view file. - If a ""data function"" was called for a partial and which arguments it passed through. Etc. " "__label__bug Repeated sentence in doc page ""What Makes SecureDrop Unique"" # Bug ## Description In the doc page **""What Makes SecureDrop Unique""**, under the heading **""Protecting against hackers""**, the sentence *""The SecureDrop servers also undergo significant system hardening in order to make it as difficult as possible for hackers to break in.""* is repeated twice. The first occurrence of the sentence should be removed. " "__label__enhancement Ability to list segments Reaper doesn't currently allow to track segments, just the overall progress. It would be good to have the ability to display all segments for a specific repair, and now how many segments are currently being processed for each run. " "__label__bug Wrong credit or debit value in accounting entry ! when manually importing bank statement (master bank statement) When I attempt to import a bank statement manually (master bank statement) we get the following error: Wrong credit or debit value in accounting entry ! Please see screenshot of the error. <img width=""1016"" alt=""screen shot 2018-02-08 at 06 41 33"" src=""https://user-images.githubusercontent.com/14073662/35955943-55dc10e0-0c9b-11e8-84c5-720fdf5d6b46.png""> " __label__bug Rotating the camera in Location Provider example removes tiles **Context:** A developer reported this problem where rotating the camera removes already active tiles **Problem:** Here's a detailed preview of the issue https://www.youtube.com/watch?v=Egn3LIXqsZQ **Solution:** My guess is that there is something wrong among the lines 129 through 135 in the `QuadTreeTileProvider.cs`script "__label__bug sky_clearness()'s ZeroDivisionError in gendaylit.py In this sky clearness calculation, ZeroDivisionError happens several times, which stopped the workflow going. https://github.com/ladybug-tools/honeybee/blob/master/honeybee/radiance/sky/gendaylit.py#L266, Found in: http://www.helios32.com/H32_gendaylit.cpp. they have a threshold (max:12) for clearness in case of diffuseiradiance being too small (0 in this case). > if (clearness > 12.0): clearness = 12.0; I think we should add this. " "__label__enhancement Masked text box Hello, First thanks for this awesome project. I don't know if this is the right place to ask for a feature, if not, please redirect me to the correct place. Is there any plans for a maked textbox, or an attached property for this efect? Thanks, Frederico " __label__enhancement Google Structured Data "__label__bug Trying to surround a period in quotes sometimes results in a segfault I'm using Ghostwriter 1.5.0 with MATE on Debian 9. The steps reproduced below *always* result in a segfault, but the final step will sometimes do it in other circumstances. Unfortunately, it's pretty sporadic, so I can't be specific, but it happens pretty often. **Steps to reproduce:** 1. Open a fresh instance of Ghostwriter. 2. Enable Focus mode. 3. Type a sentence ending in a period. (You can type multiple sentences, and it doesn't matter which one you select.) 4. From the sentences below, select a period that ends not just a sentence but a paragraph. 5. With the period selected, try to type a double-quote. **What should happen:** The period is surrounded in double-quotes. (This does happen if Focus is not on, usually.) **What does happen:** The program segfaults and I lose all my unsaved data. Thanks for getting onto this. I find Focus to be particularly useful and would like to keep using it, but if that is going to happen then I'm going to have to leave it off. Besides that, Ghostwriter is a really good app. Keep up the good work." "__label__bug # (Stripe::InvalidRequestError) ""Unrecognized request URL (GET: /v1/customers/). Please see https://stripe.com/docs or we can help at https://support.stripe.com/."" <table><tr><th>Exception</th><td>(Status 404) (Request req_QiiEV4owC0tFqC) Unrecognized request URL (GET: /v1/customers/). Please see https://stripe.com/docs or we can help at https://support.stripe.com/.</td></tr><tr><th>Last Occurrence</th><td>October 27, 2017 22:54:38 +0530</td></tr><tr><th>Count</th><td>5</td></tr></table> ## Stack Trace <pre>[bundle].../gems/stripe-3.0.0/lib/stripe/stripe_client.rb:253:in `handle_error_response' [bundle].../gems/stripe-3.0.0/lib/stripe/stripe_client.rb:200:in `rescue in execute_request_with_rescues' [bundle].../gems/stripe-3.0.0/lib/stripe/stripe_client.rb:184:in `execute_request_with_rescues' [bundle].../gems/stripe-3.0.0/lib/stripe/stripe_client.rb:136:in `execute_request' [bundle].../gems/stripe-3.0.0/lib/stripe/api_operations/request.rb:19:in `request' [bundle].../gems/stripe-3.0.0/lib/stripe/api_operations/request.rb:58:in `request' [bundle].../gems/stripe-3.0.0/lib/stripe/api_resource.rb:57:in `refresh' [bundle].../gems/stripe-3.0.0/lib/stripe/api_resource.rb:64:in `retrieve' <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/app/models/stripe_customer.rb#L10'>[app].../app/models/stripe_customer.rb:10:in `retrieve'</a> <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/app/models/exception_wrapper.rb#L11'>[app].../app/models/exception_wrapper.rb:11:in `call'</a> <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/app/models/exception_wrapper.rb#L11'>[app].../app/models/exception_wrapper.rb:11:in `block (2 levels) in singleton class'</a> <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/app/models/stripe_customer.rb#L14'>[app].../app/models/stripe_customer.rb:14:in `delete'</a> <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/app/models/exception_wrapper.rb#L11'>[app].../app/models/exception_wrapper.rb:11:in `call'</a> <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/app/models/exception_wrapper.rb#L11'>[app].../app/models/exception_wrapper.rb:11:in `block (2 levels) in singleton class'</a> (pry):41:in `<main>' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:355:in `eval' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:355:in `evaluate_ruby' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:323:in `handle_line' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:243:in `block (2 levels) in eval' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:242:in `catch' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:242:in `block in eval' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:241:in `catch' [bundle].../gems/pry-0.10.4/lib/pry/pry_instance.rb:241:in `eval' [bundle].../gems/pry-0.10.4/lib/pry/repl.rb:77:in `block in repl' [bundle].../gems/pry-0.10.4/lib/pry/repl.rb:67:in `loop' [bundle].../gems/pry-0.10.4/lib/pry/repl.rb:67:in `repl' [bundle].../gems/pry-0.10.4/lib/pry/repl.rb:38:in `block in start' [bundle].../gems/pry-0.10.4/lib/pry/input_lock.rb:61:in `__with_ownership' [bundle].../gems/pry-0.10.4/lib/pry/input_lock.rb:79:in `with_ownership' [bundle].../gems/pry-0.10.4/lib/pry/repl.rb:38:in `start' [bundle].../gems/pry-0.10.4/lib/pry/repl.rb:15:in `start' [bundle].../gems/pry-0.10.4/lib/pry/pry_class.rb:169:in `start' [bundle].../gems/pry-byebug-3.4.2/lib/pry-byebug/pry_ext.rb:11:in `start_with_pry_byebug' [bundle].../gems/railties-4.2.7.1/lib/rails/commands/console.rb:110:in `start' [bundle].../gems/railties-4.2.7.1/lib/rails/commands/console.rb:9:in `start' [bundle].../gems/railties-4.2.7.1/lib/rails/commands/commands_tasks.rb:68:in `console' [bundle].../gems/railties-4.2.7.1/lib/rails/commands/commands_tasks.rb:39:in `run_command!' [bundle].../gems/railties-4.2.7.1/lib/rails/commands.rb:17:in `<top (required)>' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `block in require' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require' <a href='https://github.com/tannakartikey/currents/blob/b800e4055ef043cfc49de9946ed25342f13a9565/bin/rails#L9'>[app].../bin/rails:9:in `<top (required)>'</a> [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:268:in `load' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:268:in `block in load' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency' [bundle].../gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:268:in `load' /home/kartikey/.rbenv/versions/2.3.4/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require' /home/kartikey/.rbenv/versions/2.3.4/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require' -e:1:in `<main>'</pre> Fingerprint: `9648e8307d6100f45f627aad218911ea2d90354a` " "__label__question How to download different files to the same path? #### Before Issue 1. Please search on the [Issues](https://github.com/lingochamp/FileDownloader/issues) 2. Please search on the [wiki](https://github.com/lingochamp/FileDownloader/wiki) 3. Please set `FileDownloadLog.NEED_LOG=true` and review the Logcat output from main process and `:filedownloader` process ( pay attention to Warn and Error level logcat) #### Issue 1. What problem do you get? 2. Which version of FileDownloader are you using when you produce such problem? 3. How to reproduce such problem? 4. Do you set `FileDownloadLog.NEED_LOG=true`? 5. Could you please reproduce this problem and provide all main process and `:filedownloader` process logcat 6. Can you fix it by yourself and request PR, if not, what's problem do you get when you try to fix it >P.S. If you don't know how to get `:filedownloader` process, it's recommended to using `pidcat` to just filter all your application logcat, or define `process.non-separate=true` on [filedownloader.properties](https://github.com/lingochamp/FileDownloader/wiki/filedownloader.properties) --- 请在Issue前认真的跟进上面提到的建议,这样将可以极大的加快你遇到问题的处理。 " "__label__enhancement Transient ""Reply"" box If conversation is open, toggle it into transient mode and display it. Then switch it back when user is done with it. If no conversation is open yet, then create -> toggle -> delete. Also, scroll up = hide titlebar + message entry, scroll down = show both." __label__enhancement Name should not be required for form helpers You should be able to create an input tag without a name attribute for example. "__label__bug Cannot update user info if card is empty It is not possible to update a users info or role when the card is not set. Error: > Fel format på kortnumret, använd bindestreck mellan, t.ex. 6122-6122-6122-6122 Expected behaviour should be to ignore the card field if it's empty." __label__bug Docs home page 404 ![image](https://user-images.githubusercontent.com/7085617/35172768-d0e02b7e-fd1d-11e7-9f4a-9efa6eeb64ee.png) Looks like we have a md template issue here. __label__bug Fix per-RollbarLogger-instance firing of InternalEvents "__label__enhancement Paths aliases **Stencil version:** ``` @stencil/core@0.2.2 ``` **I'm submitting a:** - [ ] bug report - [x] feature request - [ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or https://stencil-worldwide.slack.com **Current behavior:** Currently the compiler ignores the tsconfig file placed at the root of the project, so defining paths aliases is impossible. I created a separate branch on my fork which allows you to define the same structure of paths, but in the stencil.config.js file under the name ""aliases"". I would like to create a pull request in the master branch. **Later edit:** I just tested my code. It is not ready yet (it needs the appropiate rollup plugin - i am writing one now). **Expected behavior:** Have a way to define paths aliases (via reading the tsconfig file or have an object named aliases in the stencil.config.js file). **Steps to reproduce:** 1. Define paths object in tsconfig. 2. Try to use the alias in one of the project files **Related code:** Link to my branch: [https://github.com/bfmatei/stencil/tree/aliases-support](https://github.com/bfmatei/stencil/tree/aliases-support) " "__label__bug Main addon frame doesn't seem to behave like all good frames do :C ...which is also why i'll have to use two buttons for ""ToggleUI"" (one with MacroFrame parent, other with STBCM.MainFrame prarent). Doesn't react on UIPanel shifting, at all." __label__enhancement Welfare for those with no wage "__label__enhancement Trigger Deploy on Branch /v\d+\.\d+\$/ When we are developing on top of the master branch, we still need to make bug fixes for the stable branch. Like we are developing v0.13.x now, and we are maintaining the version of v0.12.x, which is a branch for the stable version, named `v0.12`. 1. TravisCI for publishing NPM 1. CircleCI for rebuilding Docker Image See: 1. Build Stages: Deploying to npm - https://docs.travis-ci.com/user/build-stages/deploy-npm/" __label__enhancement Get latest thingsboard and enable depth processing Use the new depth property in thingsboard.yml to enable depth processing "__label__bug Offset tip heights lose offset I think in the current implementation, an offset tip height abui1241 = 30 + rlognormal(10, 1) would put the tip at the mean of the non-offset distribution (10), instead of the offset distribution (40). I'm working on a generalization without this issue, but we should have a regression test." "__label__enhancement Plugin should error when not setup as first middleware Express version: 4.14.0 apollo engine: 0.8.5 When apollo is not the first middleware the graphql queries will just hang and the server won't respond, ever. This is totally silent and makes it very hard to debug. Can something be done about this? I would gladly help, given some hints about where to start maybe." "__label__enhancement make mindmaps 32bit compatible? we use nextcloud on a raspberry pi 3, all apps are working, but mindmaps needs 64bit to enable it. is it possible, to run it on a raspberry pi3?" __label__bug multi slide upload fails when adding more than 1 The upload progress bars show these failing. "__label__bug E2E Test: server.close is not a function <!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Please search GitHub for a similar issue or PR before submitting. Check one of the following options with ""x"" --> <pre><code> [ ] Regression <!--(a behavior that used to work and stopped working in a new release)--> [x] Bug report [ ] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow. </code></pre> ## Current behavior <!-- Describe how the issue manifests. --> I wrote an e2e test for my application. Where I create my Nest module in the `before` method and close the module in `after`. ``` describe('Application e2e', () => { const server = express(); let app: INestApplication; before(async () => { const module = await Test.createTestingModule({ modules: [ApplicationModule], }) .compile(); app = module.createNestApplication(server); await app.init(); }); after(async () => { await app.close(); }); // tests... ``` This works fine but as soon as I add a `WebSocketGateway` the the module, I get the following error: ``` TypeError: server.close is not a function at servers.forEach (node_modules/@nestjs/websockets/socket-module.js:42:48) at Map.forEach (native) at SocketModule.close (node_modules/@nestjs/websockets/socket-module.js:42:17) at NestApplication.close (node_modules/@nestjs/core/nest-application.js:118:48) at Context.after (src/modules/tournament/tests/teamorder.e2e-spec.ts:35:15) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) ``` ## Expected behavior <!-- Describe what the desired behavior would be. --> The module should close successfully. ## Minimal reproduction of the problem with instructions <!-- Please share a repo, a gist, or step-by-step instructions. --> It seems like an easy to fix error but I will create an example if needed. ## Environment <pre><code> Nest version: 4.4.2 <!-- Check whether this is still an issue in the most recent Nest version --> For Tooling issues: - Node version: 8.6.0 <!-- run `node --version` --> - Platform: Mac <!-- Mac, Linux, Windows --> Others: <!-- Anything else relevant? Operating system version, IDE, package manager, ... --> Thanks for this very great project! </code></pre> " __label__enhancement In place configuration should not affect global configuration __label__bug FIX: PSDsc collection gives an error Regression introduced in 88a423dbb19675b51fef934ff0bd62ee409e8719 __label__bug Sodium missing "__label__bug Handling NPE withBlackList and withWhiteList methods Handling NPE withBlackList and withWhiteList methods Test: ``` @Test public void testWhiteList() throws Exception{ Assume.assumeTrue(hostNames.length > 1); final String query1 = ""fn:count(fn:doc())""; try{ DocumentMetadataHandle meta6 = new DocumentMetadataHandle().withCollections(""NoHost"").withQuality(0); Assert.assertTrue(dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue() == 0); WriteBatcher ihb2 = dmManager.newWriteBatcher(); FilteredForestConfiguration forestConfig = new FilteredForestConfiguration(dmManager.readForestConfig()) .withBlackList(null); } ``` Exception: ``` java.lang.NullPointerException at com.marklogic.client.datamovement.FilteredForestConfiguration.withBlackList(FilteredForestConfiguration.java:172) at com.marklogic.client.datamovement.functionaltests.WriteHostBatcherTest.testWhiteList(WriteHostBatcherTest.java:2651) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.run(ParentRunner.java:309) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192) ```" __label__bug bit compression sometimes doesn't find instruction dependencies correctly. yeah __label__bug Landing strip coordinates tool tip text is white and unreadable "__label__bug Expected state to be Connected but was Failed The MySqlConnection object always seem to return a State of open even when connection is lost. My code currently checks this before querying to attempt an auto-reconnect. This code worked fine with the older MySql.Data connector. I'm sure I saw an issue which said this bug was fixed, but I'm still getting it in NuGet version 0.35.0. ## Symptoms: MySqlConnection.State is always Open even when connection is lost ## How to trigger Connect to MySQL then shutdown server while application is running, causing the connection to drop. Start up MySQL server again does not resolve issue as user code thinks state is still Open. ## Stack Trace: ``` [mysql] System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host at MySqlConnector.Utilities.SocketAwaitable.GetResult() in C:\projects\mysqlconnector\src\MySqlConnector\Utilities\SocketAwaitable.cs:line 30 at MySqlConnector.Protocol.Serialization.SocketByteHandler.<<WriteBytesAsync>g__DoWriteBytesAsync|7_0>d.MoveNext() in C:\projects\mysqlconnector\src\MySqlConnector\Protocol\Serialization\SocketByteHandler.cs:line 105 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult() at MySqlConnector.Utilities.ValueTaskExtensions.<ContinueWith>d__0`2.MoveNext() in C:\projects\mysqlconnector\src\MySqlConnector\Utilities\ValueTaskExtensions.cs:line 8 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at MySqlConnector.Core.ServerSession.TryAsyncContinuation(Task`1 task) in C:\projects\mysqlconnector\src\MySqlConnector\Core\ServerSession.cs:line 999 at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke() at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult() at MySqlConnector.Core.TextCommandExecutor.<ExecuteReaderAsync>d__3.MoveNext() in C:\projects\mysqlconnector\src\MySqlConnector\Core\TextCommandExecutor.cs:line 72 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() <omitted> [api] GET /part -> OK [mysql] System.InvalidOperationException: Expected state to be Connected but was Failed. at MySqlConnector.Core.ServerSession.VerifyState(State state) in C:\projects\mysqlconnector\src\MySqlConnector\Core\ServerSession.cs:line 1035 at MySqlConnector.Core.ServerSession.StartQuerying(MySqlCommand command) in C:\projects\mysqlconnector\src\MySqlConnector\Core\ServerSession.cs:line 137 at MySqlConnector.Core.TextCommandExecutor.<ExecuteReaderAsync>d__3.MoveNext() in C:\projects\mysqlconnector\src\MySqlConnector\Core\TextCommandExecutor.cs:line 69 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult() <omitted> ```" "__label__question Difference semantic between unix commands and unix dsl Unix dsl methods don't work as expected. Example: We have the next directories: ``` . ├── dir └── text.txt 1 directory, 1 file ``` How we can copy in unix: `$ cp text.txt dir` but if we directly rewrite this operation in better-files `cp(file""text.txt"", file""dir"")` it throw `java.nio.file.DirectoryNotEmptyException`, because it try replace `dir` to `text.txt` For the same operation we should write: `cp(file""text.txt"", file""dir/text.txt"") ` I guess, we can fix it in two ways: 1. Change the implementation of `cp` and `mv` to ```scala def cp(file1: File, file2: File) = { val file2FullPath = File(file2.uri.resolve(file1.name)) // add file name to destination name file1.copyTo(file2FullPath, overwrite = true) } ``` but it will break backward compatibility. 2. Highlight this difference in the README documentation" "__label__enhancement [TW-1832] allow dom access to multiple annotations _David Patrick on 2016-07-13T15:34:27Z says:_ Currently, I can access a specified annotation (or entry) of a specified task, with the command 'task _get N.annotations.N.description' but what if I wanted to see all of a tasks annotations AND entry dates with a single command? how about; _get N.annotations produces all of N's entry+annotations?" __label__enhancement Ignore spaces in texts to filter can You Make it reconize the word even If spaces were used? "__label__bug Current track: Cannot get current album Hi! First of all, I really like this project. Thanks a lot. It's a bliss to use from Alfred. 👏 When I do `spot_mini Current Track▹` it currently shows the information inside Alfred, but I get a notification with the error ""Cannot get current album"": ![cannot_get_current_album](https://user-images.githubusercontent.com/5989057/35512605-a48e29fa-0500-11e8-83a1-27fb65c20561.png) The album of the current song and the artwork is displayed in Alfred btw. I'm not really sure where your extra log info etc. is located but please tell me if necessary." "__label__enhancement [TW-189] Use Symbols as Shortcuts for Attribute Names _Max Muller says:_ To save typing time, TaskWarrior should specify (or allow the user to specify) an alternate single character--a symbol without a subsequent colon--to indicate that the text that immediately follows is a project name, a due date, a wait until date, or a priority. This would omit the need to type the longer attribute names, such as ""pro:"" ""pri:"" Instead you could type one of these to designate a project: ~,!,@,#.$.^.&.* EXAMPLE: to specify a project or priority, instead of typing ""pro:budget"" or ""pri:h"", you could type ""#budget"" and ""!h"" My typing fingers would love that. Any user who assigns attributes to most tasks could save time and typing. This feature request is and EVEN BETTER version of this one: http://taskwarrior.org/issues/show/543" "__label__bug Subhourly wind resource data bug Address issue sent to team 11/15/17 regarding subhourly resource data. It appears the nstep variable was not being updated with the proper number of records, and was assumed to be hourly always." __label__enhancement [TW-334] new helper-command; _attributes _David Patrick on 2013-08-20T06:19:27Z says:_ the terse command for a terse list of every attribute used. "__label__enhancement Validate early in server startup existence of service descriptors Following up from the comments on https://github.com/envoyproxy/envoy/pull/2522, @mattklein123 suggested we can move https://github.com/envoyproxy/envoy/pull/2518 from test to a check on server startup. This will avoid mystery segfaults due to link issues (https://github.com/google/protobuf/issues/4221). " __label__enhancement [Backend] Integrate User model with Django login system # Task Integrate our User model with Django's login system. This will allow threads and posts to be created. "__label__enhancement Improve Favicon Should use dynamic sized icons, and an .ico file. " "__label__bug [BUG] labelsel Labelsel nesting bug. The first labelsel menu will display one item (in random characters) that isn't supposed to be displayed on top of the selections, and it doesn't do anything also. Sub-menu on the other hand works just fine without the extra item. ``` @MainMenu labelsel -s -o ""Main Menu"" MainMenu_* goto MainMenu @MainMenu_Option1 labelsel -s -o ""Option 1 Sub-Menu"" MainMenu_Option1_* goto MainMenu @MainMenu_Option1_A echo ""This is Option 1 A"" goto MainMenu_Option1 @MainMenu_Option1_B echo ""This is Option 1 B"" goto MainMenu_Option1 @MainMenu_Option2 echo ""This is Option 2"" goto MainMenu @MainMenu_Option3 echo ""This is Option 3"" goto MainMenu @MainMenu_Reboot reboot @MainMenu_Shutdown poweroff ``` this will result in ``` **Main Menu** [BUG] Option1 Option2 Option3 Reboot Shutdown ``` ``` **Option 1 Sub-Menu** A B ``` EDIT: I think i figured out what's happening. The [BUG] item is actually the Main Menu item because the Main Menu's label partially matched its wildcard. But since it's only partially matching, this shouldn't be happening, right? Also, i think this bug has nothing to do with nesting at all, sorry." __label__bug fix: price dialog breaking render when meal not available "__label__bug match error on sbt-structure-extractor Hi, great plugin. Im getting this exception running `dependencyUpdates` on my sbt 1.1.0 project where i use intellij. It looks like its crashing on a global plugin that idea adds conditionally. ``` dependencyUpdates [error] scala.MatchError: addSbtPlugin(""org.jetbrains"" % ""sbt-structure-extractor"" % ""2017.2""), (of class java.lang.String) [error] at org.jmotor.sbt.Reporter$.$anonfun$plugins$4(Reporter.scala:59) [error] at scala.collection.immutable.Stream.map(Stream.scala:415) ``` ``` cat ~/.sbt/1.0/plugins/idea.sbt // Generated by IntelliJ-IDEA Scala plugin. // Add settings when starting sbt from IDEA. // Manual changes to this file will be lost. if (java.lang.System.getProperty(""idea.runid"", ""false"") == ""2017.2"") scala.collection.Seq( addSbtPlugin(""org.jetbrains"" % ""sbt-structure-extractor"" % ""2017.2""), addSbtPlugin(""org.jetbrains"" % ""sbt-idea-shell"" % ""2017.2"") ) else scala.collection.Seq.empty% ```" "__label__enhancement Mejorar los sentidos de los Mobs ``` Por el momento, los Mobs pueden ver solo en un cono de unos 90º al frente. Se me ocurre que se podría añadir una 'audición' que hiciera que los mobs pudieran escuchar a quien hace ruido (y habria que determinar cuándo se hace ruido, quizás caminando sobre hojas secas, o hablando) y acercárcele. También, otros tipos de conos de visión. Se me ocurre que criaturas mas grandes tendrían conos más largos (con el mismo ángulo o más estrecho), o que, en lugar de un cono frontal, la visión fuese como la de los caballos, que pueden ver casi en 360º. ``` Original issue reported on code.google.com by `daniel.e.rossy` on 5 Oct 2013 at 9:12 " "__label__enhancement Product - add an alternative domain How to Reproduce ------------------ 1. Try to recall the latexresu.me domain name. What Should Happen --------------------- 1. The domain name is easy to remember/recall, especially for non-tech people: tech people can use LaTeX themselves. What Happens --------------- 1. The domain name is quite technical (features underlying technology name), and recalling it is a bit of a counterintuitive task. Notes ------ 1. My suggestion is to add one of the following as an alternative domain name (all the domains are unregistered!): - https://makeresu.me - https://buildresu.me - https://createresu.me 2. Other not-so-tech options would also work just alright :) 3. May be it would even be better to set the new domain name main and redirect from https://latexresu.me to it. 4. Feedback is very welcome! :)" "__label__bug [TW-6] duplicated undo entries when merging over ssh and recur tasks _Zed Jorarard on 2013-12-09T16:41:40Z says:_ my undo.data grows exponentially with each merge, this seems similar to #1117 but it seems to happen only with recurring tasks, undo entries looks like this: time 1385888460 new [description:""10min rücken"" due:""1386111600"" entry:""1385888460"" imask:""10"" modified:""1385593208"" parent:""e0134db6-de68-426f-a6a3-789d50fe7696"" recur:""3d"" status:""pending"" uuid:""d17b40ff-0625-4b9e-a86e-5215f239d613""] --- time 1385888460 old [description:""10min rücken"" due:""1383519600"" entry:""1383593887"" mask:""+---------"" modified:""1385593208"" recur:""3d"" status:""recurring"" uuid:""e0134db6-de68-426f-a6a3-789d50fe7696""] new [description:""10min rücken"" due:""1383519600"" entry:""1383593887"" mask:""+----------"" modified:""1385888460"" recur:""3d"" status:""recurring"" uuid:""e0134db6-de68-426f-a6a3-789d50fe7696""] --- time 1386167198 new [description:""10min rücken"" due:""1386370800"" entry:""1386167198"" imask:""11"" modified:""1385888460"" parent:""e0134db6-de68-426f-a6a3-789d50fe7696"" recur:""3d"" status:""pending"" uuid:""fe58143d-35bd-4d50-89da-1428daaaf938""] --- time 1386167198 old [description:""10min rücken"" due:""1383519600"" entry:""1383593887"" mask:""+----------"" modified:""1385888460"" recur:""3d"" status:""recurring"" uuid:""e0134db6-de68-426f-a6a3-789d50fe7696""] new [description:""10min rücken"" due:""1383519600"" entry:""1383593887"" mask:""+-----------"" modified:""1386167198"" recur:""3d"" status:""recurring"" uuid:""e0134db6-de68-426f-a6a3-789d50fe7696""] --- time 1386370800 new [description:""10min rücken"" due:""1386630000"" entry:""1386370800"" imask:""12"" modified:""1386167198"" parent:""e0134db6-de68-426f-a6a3-789d50fe7696"" recur:""3d"" status:""pending"" uuid:""61374639-39a4-44be-9667-f16017bce2f8""] --- time 1386370800 old [description:""10min rücken"" due:""1383519600"" entry:""1383593887"" mask:""+-----------"" modified:""1386167198"" recur:""3d"" status:""recurring"" uuid:""e0134db6-de68-426f-a6a3-789d50fe7696""] new [description:""10min rücken"" due:""1383519600"" entry:""1383593887"" mask:""+------------"" modified:""1386370800"" recur:""3d"" status:""recurring"" uuid:""e0134db6-de68-426f-a6a3-789d50fe7696""] i couldnt really reproduce it with testcases until now, the mask seems to get longer and longer and timestamp is the same on the duplicated entries" "__label__enhancement Simplify UI (I know you already have this as a task for MVP+1, but I can't comment in tasks) I couldn't help myself to think about the ui for a bit. This is a rough suggestion for a simpler UI: ![frame 3](https://user-images.githubusercontent.com/523210/35773203-89f521e4-094b-11e8-8ca6-bfd3cfe203e9.png) - I would retrieve the http / https from the given url. (this was already suggested by someone on Google+) - I ould put the provider choice in a dropdown box because I it simplifies the ui visually and I can't imagine people changing there preference frequently? But I'm curious what you think about that. The value would need to be stored for next time. - The shortened field could be updated on any change in the form. I'm assuming this will usually be one change, pasting a new url. - The highlighted ""apply"" button would copy the shortened url to clipboard. This action should probably also be executed when pressing enter. You could also forgo the buttons when you implement #15, but I feel it's quite uncommon for apps to change the clipboard without a more explicit action. " "__label__bug @ParametersAreNonNullByDefault annotation but parameter should be Nullable. `next` method in `Route.Chain` interface is passing null for `prefix` parameter, which fails due to the `@ParametersAreNonNullByDefault` annotation introduced in Jooby 1.2. ` default void next(final Request req, final Response rsp) throws Throwable { next(null, req, rsp); }`" "__label__enhancement ACC+ at 48 kbps? Hi, I think it would be very interesting to be able to emit at 48 kbps because many telephone operators, once the limits of data use have been exceeded, allow us to continue using data at 54 kbps or less. Would it be possible to add this bitrate? Thank you very much. Greetings, <!-- Love AzuraCast? Please consider supporting our collective: 👉 https://opencollective.com/AzuraCast/donate -->" "__label__bug Error: No Project. in 'Object.ThrowNoProject' during 'getApplicableRefactors' This issue comes from crash dumps in telemetry. We've tried to de-duplicate issues on a best-effort basis, comparing the sequence of methods called and the command requested while ignoring line numbers. **TypeScript Version Prefix**: 2.7.1 **VSCode Version** 1.20.0-insider **command requested**: getApplicableRefactors **hitting sessions**: 5458 **proportion of all sessions**: 0.020375327113968188 **stack** ``` Error: No Project. at Object.ThrowNoProject (tsserver.js:84179:23) at ScriptInfo.getDefaultProject (tsserver.js:84787:46) at ProjectService.getDefaultProjectForFile (tsserver.js:87359:39) at IOSession.Session.getFileAndProjectWorker (tsserver.js:89734:87) at IOSession.Session.getFileAndProject (tsserver.js:89719:29) at IOSession.Session.getApplicableRefactors (tsserver.js:90153:31) at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (tsserver.js:89112:61) at unknown (tsserver.js:90355:88) at IOSession.Session.executeWithRequestId (tsserver.js:90346:28) at IOSession.Session.executeCommand (tsserver.js:90355:33) at IOSession.Session.onMessage (tsserver.js:90375:35) at Interface.<anonymous> (tsserver.js:91576:27) at emitOne (events.js:96:13) at Interface.emit (events.js:191:7) at Interface._onLine (readline.js:241:10) at Interface._normalWrite (readline.js:384:12) at Socket.ondata (readline.js:101:10) at emitOne (events.js:96:13) at Socket.emit (events.js:191:7) at readableAddChunk (_stream_readable.js:178:18) at Socket.Readable.push (_stream_readable.js:136:10) at Pipe.onread (net.js:560:20) ```" __label__bug Comments are not displayed in correct order "__label__bug Crash if HDD is not mounted **System Details:** * Operating System: GNU/Linux * Distro(For GNU/Linux and BSD users): ArchLinux * Desktop Environment(For GNU/Linux and BSD users): XFCE * Persepolis Version: persepolis 3.0.1-1 * How do you install Persepolis? (Repositories, source, ...) AUR (not git version) * _Please attach log files if crash or paste error message_ ``` Traceback (most recent call last): File ""/usr/bin/persepolis"", line 11, in <module> load_entry_point('persepolis==3.0.1', 'console_scripts', 'persepolis')() File ""/usr/lib/python3.6/site-packages/pkg_resources/__init__.py"", line 572, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File ""/usr/lib/python3.6/site-packages/pkg_resources/__init__.py"", line 2755, in load_entry_point return ep.load() File ""/usr/lib/python3.6/site-packages/pkg_resources/__init__.py"", line 2408, in load return self.resolve() File ""/usr/lib/python3.6/site-packages/pkg_resources/__init__.py"", line 2414, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) File ""/usr/lib/python3.6/site-packages/persepolis/__main__.py"", line 21, in <module> from persepolis.scripts import persepolis File ""/usr/lib/python3.6/site-packages/persepolis/scripts/persepolis.py"", line 93, in <module> from persepolis.scripts import initialization File ""/usr/lib/python3.6/site-packages/persepolis/scripts/initialization.py"", line 171, in <module> osCommands.makeDirs(folder) File ""/usr/lib/python3.6/site-packages/persepolis/scripts/osCommands.py"", line 66, in makeDirs os.makedirs(folder_path, exist_ok=True) File ""/usr/lib/python3.6/os.py"", line 220, in makedirs mkdir(name, mode) PermissionError: [Errno 13] Permission denied: '/run/media/ali/XFS' ``` **Issue Description and steps to reproduce:** #### Write in English language please, Thanks :) #### Feel free to edit or delete lines in this template if it is necessary. #### Please report only one Issue (Bug or feature request or ...) in one issue! and open new Issue for another one :) I'm using an extra HDD for my downloads, so default address is '/run/media/.....', if my HDD is not mounted when I try to open persepolis, it will crash" __label__bug decode using attention-lm my script 1 #!/bin/sh 2 3 PROBLEM=languagemodel_ptb10k 4 #MODEL=transformer 5 #HPARAMS=transformer_base 6 MODEL=attention_lm 7 HPARAMS=attention_lm_small 8 9 DATA_DIR=t2t_data 10 TMP_DIR=t2t_datagen_tmp 11 TRAIN_DIR=t2t_train/$PROBLEM/$MODEL-$HPARAMS 12 13 mkdir -p $DATA_DIR $TMP_DIR $TRAIN_DIR 14 15 ## Generate data 16 #t2t-datagen 17 # --data_dir=$DATA_DIR 18 # --tmp_dir=$TMP_DIR 19 # --problem=$PROBLEM 20 21 t2t-trainer 22 --data_dir=$DATA_DIR 23 --problems=$PROBLEM 24 --model=$MODEL 25 --hparams_set=$HPARAMS 26 --output_dir=$TRAIN_DIR 27 --worker_gpu=8 28 --train_steps=1000 29 --eval_steps=10 30 31 t2t-decoder 32 --data_dir=$DATA_DIR 33 --problems=$PROBLEM 34 --model=$MODEL 35 --hparams_set=$HPARAMS 36 --output_dir=$TRAIN_DIR 37 --decode_from_file=$TMP_DIR/simple-examples/data/small_test my decode result seems empty: INFO:tensorflow:Inference results INPUT: it was the first time in seven years that moscow has n't joined efforts led by INFO:tensorflow:Inference results OUTPUT: INFO:tensorflow:Inference results INPUT: for a while INFO:tensorflow:Inference results OUTPUT: INFO:tensorflow:Inference results INPUT: we 've been spending a lot of time in los angeles talking to tv production people says mike parks president of call interactive which supplied technology for both abc sports and nbc 's consumer minutes INFO:tensorflow:Inference results OUTPUT: INFO:tensorflow:Inference results INPUT: from the fee the local phone company and the long-distance carrier extract their costs to carry the call passing the rest of the money to the INFO:tensorflow:Inference results OUTPUT: "__label__bug Refactor CSS to allow flexible module boxes without overflow In #540, the filter bar has the possibility of overflowing the `flex-util` bar. The change ensures that `flex-util` will expand to accommodate all filters to ensure they can be clicked by a user at any time. However, when the `flex-util` bar expands, it forces down the content under it causing the browser page to overflow. **Fix** Using [Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/), I am fairly sure we can make the `flex-content` class resize dynamically so that the main browser page does not overflow. No matter how large the `flex-util` gets, the `flex-content` should only take up the remaining room. " __label__bug Each Task is calling pushuser which is causing DB locking problems push user calls getuserbyname __label__bug Dinic is pretty slow "__label__enhancement [TW-230] Filter tasks on partial UUIDs _Paul Kishimoto says:_ (at)git@ also identifies its basic units (commits) with hashes: <pre> $ git log -1 commit 97f74b72765a15fa050cbfa442e7dc944e4028bc Author: Paul Natsuo Kishimoto <mail(at)paul.kishimoto.name> Date: Fri Dec 13 17:52:49 2013 -0500 New script: kdx </pre> The first few characters of the hash can also be used to identify the commit on the command line: <pre> $ git log -1 97f7 commit 97f74b72765a15fa050cbfa442e7dc944e4028bc Author: Paul Natsuo Kishimoto <mail(at)paul.kishimoto.name> Date: Fri Dec 13 17:52:49 2013 -0500 New script: kdx </pre> …but only if unambiguous: <pre> $ git log | grep ""commit 9"" commit 97f74b72765a15fa050cbfa442e7dc944e4028bc commit 97308807312feb209deff8d00859b59d6a889902 commit 9d30c0c30a60ed0e8f730bb3b1c2f42fecf84e34 $ git log -1 9 fatal: ambiguous argument '9': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]' </pre> It would be nice if this were possible with task UUIDs—when attempting to select completed tasks, it would eliminate the need to either copy/paste or fully retype a UUID read from output of a previous command." "__label__bug Individual border properties in radio and checkbox are being merged into border-shorthand syntax during webpack build with production flag breaking PostCSS custom properties transform # Issue Description When webpack is run in production mode, some of the checkbox and radio button theme styles are converted into a shorthand syntax which breaks the PostCSS plugin transformation of CSS custom properties to static values. This issue was originally discovered in the cerner-consumer-theme repo: https://github.cerner.com/terra/cerner-consumer-theme/issues/28 ## Issue Type <!-- Is this a new feature request, enhancement, bug report, other? --> - [ ] New Feature - [ ] Enhancement - [x] Bug - [ ] Other ## Expected Behavior Radio and checkbox styles can be custom themed ## Current Behavior Individual border properties in radio and checkbox are being merged into border-shorthand syntax when webpack is run in production mode which causes issues when trying to compile static values via the PostCSS custom properties plugin. ## Extended description Did some more debugging and came across and oddity between our styles in the local dev server and in the deployed environment. With our local dev server running: ### Given this input ```scss .native-input:checked + .outer-ring { background-color: var(--terra-form-radio-outer-ring-checked-background-color, transparent); border-color: var(--terra-form-radio-outer-ring-checked-border-color, transparent); border-radius: var(--terra-form-radio-outer-ring-checked-border-radius, 0); border-style: var(--terra-form-radio-outer-ring-checked-border-style, none); border-width: var(--terra-form-radio-outer-ring-checked-border-width, 0); box-sizing: border-box; } ``` ### We are getting the following output in our extracted CSS file. The border properties remain split out individually ```scss [dir] .Radio__radio___1mKDF .Radio__native-input___2v9UZ:checked + .Radio__outer-ring___lGCNm { background-color: var(--terra-form-radio-outer-ring-checked-background-color, transparent); border-color: var(--terra-form-radio-outer-ring-checked-border-color, transparent); border-radius: var(--terra-form-radio-outer-ring-checked-border-radius, 0); border-style: var(--terra-form-radio-outer-ring-checked-border-style, none); border-width: var(--terra-form-radio-outer-ring-checked-border-width, 0); margin-top: var(--terra-form-radio-outer-ring-checked-margin-top, 0); } ``` In our deployed environment for the PR deployment URLs, we run wepback with the production flag. It seems one of our style processors is merging the border rules into one property using the border shorthand. ### Given this input ```scss .native-input:checked + .outer-ring { background-color: var(--terra-form-radio-outer-ring-checked-background-color, transparent); border-color: var(--terra-form-radio-outer-ring-checked-border-color, transparent); border-radius: var(--terra-form-radio-outer-ring-checked-border-radius, 0); border-style: var(--terra-form-radio-outer-ring-checked-border-style, none); border-width: var(--terra-form-radio-outer-ring-checked-border-width, 0); box-sizing: border-box; } ``` ### We are getting the following output in our extracted CSS file in the deployed code used for the PR deployment Note all the border styles have been merged into 1 border short-hand syntax. ```scss [dir] .Radio__radio___1mKDF .Radio__native-input___2v9UZ:checked+.Radio__outer-ring___lGCNm { background-color: var(--terra-form-radio-outer-ring-checked-background-color,transparent); border: var(--terra-form-radio-outer-ring-checked-border-width,0) var(--terra-form-radio-outer-ring-checked-border-style,none) var(--terra-form-radio-outer-ring-checked-border-color,transparent); border-radius: var(--terra-form-radio-outer-ring-checked-border-radius,0); margin-top: var(--terra-form-radio-outer-ring-checked-margin-top,0) } ``` Not sure if postCSS or node-sass is doing this, I believe this issue is causing oddities with the theming styles mentioned above. I've found by switching any place where all three border properties are used to the border shorthand syntax, it resolves the error where webpack is run in prod mode and the individual border styles get converted to shorthand syntax. **Switch this** ```css .selector { border-color: var(--terra-form-radio-outer-ring-checked-border-color, #f00); border-style: var(--terra-form-radio-outer-ring-checked-border-style, solid); border-width: var(--terra-form-radio-outer-ring-checked-border-width, 1px); } ``` **to this** ```css .selector { border: var(--terra-form-radio-outer-ring-checked-border, 1px solid #f00); } ``` I have yet been able to find which of our build tools is responsible for converting this when webpack is run with the prod flag: ```css .native-input:checked + .outer-ring { border-color: var(--terra-form-radio-outer-ring-checked-border-color, transparent); border-style: var(--terra-form-radio-outer-ring-checked-border-style, none); border-width: var(--terra-form-radio-outer-ring-checked-border-width, 0); } ``` to this ```css [dir] .Radio__radio___1mKDF .Radio__native-input___2v9UZ:checked+.Radio__outer-ring___lGCNm { border: var(--terra-form-radio-outer-ring-checked-border-width,0) var(--terra-form-radio-outer-ring-checked-border-style,none) var(--terra-form-radio-outer-ring-checked-border-color,transparent); } ``` <!-----------------------------------------------------------------------------------> <!-- If you are reporting a bug, please fill out the sections below. --> <!-- Otherwise, the sections below can be deleted. --> <!-----------------------------------------------------------------------------------> ## Steps to Reproduce <!-- Provide a link to a live example, or an unambiguous set of steps to --> <!-- reproduce this bug. Include code to reproduce, if relevant --> 1. Write border styles as individual properties with CSS custom properties, border-width, border-color, border-style. (Must include all 3 in selector, if only 1 or 2 or included, it doesn't appear to convert them to border short-hand syntax) 2. Run webpack with production flag ## Environment <!-- Include as many relevant details about the environment you experienced the bug in --> * Component Version: terra-form-checkbox, terra-form-radio * Browser Name and Version: All * Operating System and version (desktop or mobile): All " "__label__enhancement Ontology issue: sequence ontology Below is the microsatellite insert call. It inserts it int o the `sequence` ontology as per Tripal custom. However, I'd love to make the ontology CV/DB naming consistent, and have `cv_name` be **SO** instead of Sequence. ``` if (isset($bundle->data_table) AND ($bundle->data_table == 'organism' OR $bundle->data_table == 'feature')) { tripal_insert_cvterm([ 'id' => 'SO:0000289', 'name' => 'microsatellite', 'cv_name' => 'sequence', 'definition' => 'A repeat_region containing repeat_units of 2 to 10 bp repeated in tandem. [ NCBI:th http://www.informatics.jax.org/silver/glossary.shtml ]!', ]);```" __label__bug On Wikivoyage clicking on a phone link should make a call Currently nothing happens at all. __label__enhancement Links to owners docs in JSON "__label__enhancement Cache fee levels Instead of default values, cache latest successful fee levels. If cache is older than a few hours, log a warning message." "__label__enhancement remove EMM and GV sets As we move towards merging geographic collections into one tag set (the one seeded from ABYZ - 15765102), we want to remove the GV (556) and EMM (597) country sets from the UI. I think this means: - [x] remove the GV and EMM constants from `util/tags.py` and `lib/tagUtil.js`, and from the `VALID_COLLECTION_TAG_SETS_IDS` arrays - [ ] make sure collections in those two tag sets don't show up in collection search results in the `MediaPicker` and the Source Manager search bar - [x] remove the list containers in JS (both `EMMCollectionListContainer` and `GVCollectionListContainer`) - [x] remove links to those from the Source Mgr menu - [x] remove all three `descriptive-button`s that link to the collection list pages from the Source Mgr homepage (we'll add the geographic collections link back later in a larger rethinking of that homepage) And get rid of any other references to these. " "__label__bug Program segfaults when reading broken HDF5 Instead of just segfaulting when reading broken HDF5, the program should print an error message and terminate." __label__bug Fix Main Announcement Admin Panel Submitting the form on the admin panel no longer works. This is likely due to a move from Angular 1 to Angular 2. Angular 2 captures and does `preventDefault` on the default form handler "__label__question How to start Nuxt starter-template in production with PM2 Hi i would like to know how to run Nuxt app (starter-template) with PM2, I can run it with ""npm run start"" but i dont know how to run it with PM2. Thanks." "__label__bug Pit road countdown not working in league session I just installed simapps, so far I mainly use the pitroad adjustments and pitstall countdown, they work in practice and in the official races, but I ran in 3 different league races, and it did not work in any of them, I did restart the server and everything before each league race and it would not work, any ideas? In Iracing..." __label__enhancement Custom error handling __label__bug Accents in tinybio are broken ![screen shot 2018-02-02 at 22 45 14](https://user-images.githubusercontent.com/6607512/35758243-d6144d0c-086a-11e8-9faa-bce8fd11467c.png) __label__bug No preview for background templates ![screenshot from 2018-01-30 16-27-21](https://user-images.githubusercontent.com/31239108/35562800-8f86c5fa-05da-11e8-9cd7-5f1545292527.png) #### Expected Behaviour:- Preview should be displayed for any of the background template selected. #### Am I working on this? Yes __label__enhancement move pages/Counter/Home to pages/Counter "__label__bug Pressing Back often fails to work as expected Hello, The back button is not working as expected. It is a bit frustrating while browsing graphs. Also the browser's URL field does not correctly reflect the current location for Time Graph View. For example: Start browsing some graphs in tree view and click Time Graph View for a specific graph. The URL stays the same (reflecting the tree) and you can't send it as a hyperlink to someone. Kind regards, Stefan Nikolov" "__label__bug How to set RestClient Timeout property My RestClients keep timing out, and I can't see a way to increase the timeout. As far as I see, I only get a client once I have called EncompassRestClient.CreateFromUserCredentialsAsync (or the equivalent), at which point the HTTP Client is already started and I can't update the Timeout. How am I supposed to set the Timeout?" __label__enhancement Add Travis build "__label__question Using raumkernel, problems with logger Hi, I finally started my implementation of node for node-red using your raumkernel to control some aspects of my Raumfeld system with Apples ""Home"" app. The real dependency is Node-Red -> MQTT Mosquitto -> homebridge-mqtt -> homebridge -> Home... After some starting problems I think I got the trick how to achvie what I want so I started to implement my first nodes. But I had one problem with the logger especially with this line: https://github.com/ChriD/node-raumkernel/blob/0dd77ebb506d84a701cddb581d67f9c26ca25d63/lib/lib.logger.js#L64 This should create a file logger but starting the raumkernel in a node that is loaded in node-red this fails because it tries to create the file in the root directory. As this is my first project with JS and Node.js I have no exact idea of what going on but as I thought I don't need a logfile for now, I just commented the line. I think best would be to extend the logger creation with some addtional parameters to be able to select which logger end points should be created?" "__label__enhancement display() table view: Search bar only works on first 100 rows of data (Follow-up to #270) Search functionality only returns results from the first 100 rows of data shown in the initial table view. E.g. 1. Row 150 of my dataset has ""name"" value = ""Bob"" 2. I want to search for all rows containing ""Bob"" so I type ""Bob"" in the search bar 3. Row 150 will not be returned in the result" __label__enhancement Link last commit of conventions repo in project starters and map source __label__bug Surgeon and Research borgs can't repair their syringes. #### Brief description of the issue Syringes are broken forever if you stab someone with them as a surgeon/research borg. Crisis borgs are fine. #### What you expected to happen For the syringe to repair itself when recharging. #### What actually happened Broken syringe forever. #### Steps to reproduce Be surgeon/research borg. Stab someone with syringe. Cry. #### Additional info: Fix going up soon. __label__bug Issue 1 ![image](https://user-images.githubusercontent.com/36004817/35640216-64e2c8b6-0671-11e8-85af-4bf7a49123b7.png) Study materials cannot be linked "__label__bug [TW-1609] In 'urgency<10', 10 is interpreted as an ID _Wim Schuermann on 2015-05-03T18:46:22Z says:_ ``` bf(at)box:~$ task add a; task add b +foo; task next Created task 1. Created task 2. ID Tag Description Urg 2 foo b 0.8 1 a 0 bf(at)box:~$ task 'urgency<10' next No matches. bf(at)box:~$ task 'urgency<10.0' next ID Age Tag Description Urg 2 11s foo b 0.8 1 11s a 0 bf(at)box:~$ task rc.debug.parser=1 'urgency<10' next 2>&1 | grep Derive d Derived filter: '( urgency < ( ( id == 10 ) ) and ( status == pending ) )' ```" __label__bug [4.1.5-DEV1] IllegalStateException during reload when generating inspect page ``` java.lang.IllegalStateException: Settings are not supposed to be called before ConfigSystem is Enabled! com.djrapitops.plan.system.settings.Settings.getConfig(Settings.java:187) com.djrapitops.plan.system.settings.Settings.isTrue(Settings.java:123) com.djrapitops.plan.system.info.connection.ConnectionOut.sendRequest(ConnectionOut.java:139) com.djrapitops.plan.system.info.connection.ConnectionSystem.sendInfoRequest(ConnectionSystem.java:80) com.djrapitops.plan.system.info.connection.BukkitConnectionSystem.lambda$sendWideInfoRequest$1(BukkitConnectionSystem.java:85) com.djrapitops.plan.system.info.connection.WebExceptionLogger.logIfOccurs(WebExceptionLogger.java:19) com.djrapitops.plan.system.info.connection.BukkitConnectionSystem.sendWideInfoRequest(BukkitConnectionSystem.java:85) com.djrapitops.plan.system.info.request.GenerateInspectPageRequest.generateAndCache(GenerateInspectPageRequest.java:67) com.djrapitops.plan.system.info.request.GenerateInspectPageRequest.runLocally(GenerateInspectPageRequest.java:73) com.djrapitops.plan.system.info.BukkitInfoSystem.runLocally(BukkitInfoSystem.java:32) com.djrapitops.plan.system.info.InfoSystem.sendRequest(InfoSystem.java:68) com.djrapitops.plan.system.info.InfoSystem.generateAndCachePlayerPage(InfoSystem.java:49) com.djrapitops.plan.system.cache.SessionCache.lambda$null$0(SessionCache.java:61) com.djrapitops.plan.system.info.connection.WebExceptionLogger.logIfOccurs(WebExceptionLogger.java:19) com.djrapitops.plan.system.cache.SessionCache.lambda$cacheSession$1(SessionCache.java:60) com.djrapitops.plan.system.processing.ProcessConsumer.consume(ProcessingQueue.java:94) com.djrapitops.plan.system.processing.ProcessConsumer.consume(ProcessingQueue.java:79) com.djrapitops.plan.utilities.queue.Consumer.run(Consumer.java:34) com.djrapitops.plugin.task.RunnableFactory$1.run(RunnableFactory.java:38) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:58) org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:52) com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) java.lang.Thread.run(Unknown Source) ``` "__label__bug xychart: Empty visible-range chart on initial trace opening Sometimes, the visible-range chart will remain empty upon opening a trace. Moving the visible time range then fixes it, but the initial state should be reliably shown." "__label__enhancement add user/organism-admin permission level Related to #771 and related to [this thread](http://comments.gmane.org/gmane.science.biology.gmod.apollo/1920). I think that the proposal would be to add another permission level between organism-admin (when you select a user as an admin for a single organism) and ""write"". A super-admin would remain the same and be required to add users to groups (so super-admin,organism-admin,**user-admin**,write,export,read). user-admin would be the new one. Requirements for the new permission level: - create users that are automatically assigned to an organism - user tab would show up, but only those that share the organism that hey are a user-admin on - group tab would show up, but only those of the same group would be visible - only the organisms available would show up, and would have minimal editable fields (if any) - no global system permissions would be available - reports would be available, but only for related organisms and users (this might be VERY messy, however) " __label__bug Fix rendering of contentful pages Use Marked package to convert Markdown (MD) content from contentful into HTML. Currently not being rendered as HTML (ex. not rendering images). - https://www.npmjs.com/package/marked - https://github.com/chjj/marked Then set content in React: - https://reactjs.org/docs/dom-elements.html#dangerouslysetinnerhtml "__label__enhancement Create Ocata release #### OpenStack Release move master (newton) -> ocata #### Description The master branch is current with newton, but should be moved to ocata. Make necessary changes to have master branch work in ocata, then create stable/ocata branch from master. " "__label__bug Removed target still actively logging **Type**: Bug **Summary**: When removing a target from the `LoggingConfiguration` using `configuration.RemoveTarget(""target name"")`, the target still appears in `Configuration.AllTargets` and is still actively logging. My expectation was that the target would be completely removed from the configuration and would no longer appear in the list of targets nor be used by NLog in any way. **NLog version**: 4.4.11 **Platform**: .Net 4.5 **Test illustrating the issue**: ```csharp [Fact] public void RemovingATarget() { // Setup a configuration with 2 console targets var config = new LoggingConfiguration(); config.AddTarget(new ConsoleTarget(""ConsoleA"") { Layout = ""A | ${message}"" }); config.AddTarget(new ConsoleTarget(""ConsoleB"") { Layout = ""B | ${message}"" }); config.AddRule(LogLevel.Debug, LogLevel.Fatal, ""ConsoleA""); config.AddRule(LogLevel.Debug, LogLevel.Fatal, ""ConsoleB""); LogManager.ThrowConfigExceptions = true; LogManager.ThrowExceptions = true; InternalLogger.LogLevel = LogLevel.Debug; InternalLogger.LogFile = ""nlog_internal.log""; // Apply the configuration LogManager.Configuration = config; // Success Assert.Equal( new[] { ""ConsoleA"", ""ConsoleB"" }, LogManager.Configuration.ConfiguredNamedTargets.Select(target => target.Name) ); // Remove the first target from the configuration LogManager.Configuration.RemoveTarget(""ConsoleA""); // Success Assert.Equal( new[] { ""ConsoleB"" }, LogManager.Configuration.ConfiguredNamedTargets.Select(target => target.Name) ); using (var writer = new StringWriter()) { Console.SetOut(writer); var logger = LogManager.GetCurrentClassLogger(); logger.Debug(""Hello""); var output = writer.ToString(); Assert.Contains(""B | Hello"", output); // Success Assert.DoesNotContain(""A | Hello"", output); // FAILURE } // FAILURE: contains { ""ConsoleA"", ""ConsoleB"" } Assert.Equal( new[] { ""ConsoleB"" }, LogManager.Configuration.AllTargets.Select(target => target.Name) ); } ``` In case of a BUG: - What is the current result? The removed target is still logging to console (see test above). - What is the expected result? The removed target is no longer known to NLog and does not get logged to. - Did you checked the [Internal log](https://github.com/NLog/NLog/wiki/Internal-Logging)? ``` // Internal log 2017-07-26 15:34:00.3069 Debug --- NLog configuration dump --- 2017-07-26 15:34:00.3134 Debug Targets: 2017-07-26 15:34:00.3134 Debug Console Target[ConsoleA] 2017-07-26 15:34:00.3249 Debug Console Target[ConsoleB] 2017-07-26 15:34:00.3249 Debug Rules: 2017-07-26 15:34:00.3249 Debug logNamePattern: (:All) levels: [ Debug Info Warn Error Fatal ] appendTo: [ ConsoleA ] 2017-07-26 15:34:00.3434 Debug logNamePattern: (:All) levels: [ Debug Info Warn Error Fatal ] appendTo: [ ConsoleB ] 2017-07-26 15:34:00.3434 Debug --- End of NLog configuration dump --- 2017-07-26 15:34:00.3584 Info Found 10 configuration items 2017-07-26 15:34:00.3739 Info Found 10 configuration items 2017-07-26 15:34:00.3964 Debug Targets for NLogRemoveTargetBug.RemoveTarget by level: 2017-07-26 15:34:00.3964 Debug Trace => 2017-07-26 15:34:00.4064 Debug Debug => ConsoleA ConsoleB 2017-07-26 15:34:00.4064 Debug Info => ConsoleA ConsoleB 2017-07-26 15:34:00.4064 Debug Warn => ConsoleA ConsoleB 2017-07-26 15:34:00.4209 Debug Error => ConsoleA ConsoleB 2017-07-26 15:34:00.4209 Debug Fatal => ConsoleA ConsoleB ``` - Please post full exception details (message, stacktrace, inner exceptions) No exception or error, just unexpected behaviour. - Are there any work arrounds? Yes, I can set the LogLevel for the removed target to LogLevel.Off - Is there a version in which it did worked? Not sure. First spotted in 4.4.9, reproduced in 4.4.11. - Can you help us by writing an unit test? See above. :) " "__label__enhancement Add ability to report count of rows in cursor as well as count of differences ## Ability to report count of rows in cursor as well as count of differences --------------------- If an expectation fails and we have large data-set, there is no point in displaying all differences, specially if there is more than 5-10-50? diffing rows. We definitely should provide additional information in that case: Something like: ``` Data diff truncated, showing 5 out of X differences. Expected rows = A Actual rows = B ```" "__label__bug GitHub integration regression: fetch not defined ## Issue - Bug I'm unable to link my GitHub user to our Sales & Marketing team. ![image](https://user-images.githubusercontent.com/103000/35397534-96a79f2e-01a4-11e8-9a03-3646a5cdb59d.png) (note: it looks like the overall exception is caught, so there is nothing to show on the console) ### Repro steps: (for a team already integrated with GitHub by a different user) 1. Navigate to Team Settings -> Integrations -> GitHub 2. Click ""Link"" on a given repository 3. Observe error message - **OS:** macOS - **Browser:** Chrome / Safari / Lynx / ? + version - **Estimated effort:** X points ([see CONTRIBUTING.md](https://github.com/ParabolInc/action/blob/master/CONTRIBUTING.md#points-and-sizes)) ### Acceptance Criteria (optional) Users can: - Link their GitHub account to a given repository " __label__enhancement Add hide admin account role "__label__enhancement Automatizar la publicación de un release **Prioridad:** alta **Descripción** Automatizar a través de Travis CI el proceso de publicación de una release en GitHub: fichero comprimido que contiene el plugin, versión y changelog. Más información: https://docs.travis-ci.com/user/deployment/releases/ " "__label__bug beta 5 - Prompts for passphrase after uninstall/reinstall before i started the app, i uninstalled the old OSM. then after launching the new OSM it prompted me a passphrase. i entered my old passphrase and the app crashed. now after creating a new OSM ID it works, but i think this may be a bug." "__label__enhancement make the time the server waits before kicking someone from a multiplayer game configurable For example: the parameter would be in the config file, named auto_disconnect_delay_in_seconds with a default of 60 seconds." "__label__enhancement training the neural network should be much more general Given some time series with labelled spikes, 1. remember the spike times and labels 2. keep dropping the spike prominence detection till we double the # of spikes 3. we have now generated our negative training dataset open problems: 1. how do we know whether to use + or - prom?" "__label__bug Navbar links not working with Purplenumbers (render) plugin I think I said most of it in the title. My links in the navbar goes all strange when I'm using the renderer of Purplenumbers plugin. This functionality is crucial to me, as I'm using it as a way to index and jump to paragraphs across pages, but I have turned it off for now. Please let me know if more info needed!" "__label__enhancement [TW-770] enhanced alias handling _David Patrick on 2011-01-02T13:05:41Z says:_ Aliases can be set up in .taskrc, and can be used to create a simple substitution for a command name. Task ships with an example, that causes ""rm"" to behave like ""del"". but is sure would be great to use this function for more complex substitutions, like alias.lstag=""ls rc.report.ls.sort=tag+"" making sure that arguments that follow the aliased command are passed to the function. see: http://taskwarrior.org/boards/1/topics/show/1062" __label__enhancement New field remarks to DJ personal Edit/DJ - Personal: neues Textfeld „Remarks“ oder „About me“. Brauchen wir das? "__label__bug [autoscaler] Error when availability zone is not specified. I just ran ``` ray create_or_update ~/Workspace/ray/python/ray/autoscaler/aws/development-example.yaml ``` and ran into the following error. Most likely introduced in #1393. ``` Traceback (most recent call last): File ""/Users/rkn/anaconda3/bin/ray"", line 11, in <module> load_entry_point('ray', 'console_scripts', 'ray')() File ""/Users/rkn/Workspace/ray/python/ray/scripts/scripts.py"", line 276, in main return cli() File ""/Users/rkn/anaconda3/lib/python3.6/site-packages/click/core.py"", line 722, in __call__ return self.main(*args, **kwargs) File ""/Users/rkn/anaconda3/lib/python3.6/site-packages/click/core.py"", line 697, in main rv = self.invoke(ctx) File ""/Users/rkn/anaconda3/lib/python3.6/site-packages/click/core.py"", line 1066, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File ""/Users/rkn/anaconda3/lib/python3.6/site-packages/click/core.py"", line 895, in invoke return ctx.invoke(self.callback, **ctx.params) File ""/Users/rkn/anaconda3/lib/python3.6/site-packages/click/core.py"", line 535, in invoke return callback(*args, **kwargs) File ""/Users/rkn/Workspace/ray/python/ray/scripts/scripts.py"", line 260, in create_or_update cluster_config_file, min_workers, max_workers, no_restart) File ""/Users/rkn/Workspace/ray/python/ray/autoscaler/commands.py"", line 27, in create_or_update_cluster validate_config(config) File ""/Users/rkn/Workspace/ray/python/ray/autoscaler/autoscaler.py"", line 479, in validate_config validate_config(config[k], schema[k]) File ""/Users/rkn/Workspace/ray/python/ray/autoscaler/autoscaler.py"", line 472, in validate_config k, v.__name__)) ValueError: Missing required config key `availability_zone` of type str ``` cc @pschafhalter @ericl " "__label__enhancement Option for user to delete their account/data completely With the new EU General Data Protection Regulations (https://www.eugdpr.org/), we'll soon be required to give users the option to delete their account, and all the data we hold on them. Should put this option at the end of the edit profile page, but with clear warning that data can;t be recovered, and ask to re-input their password. Will need to make sure the following is deleted: user record user profile record points badges tracker activity quiz attempts" __label__enhancement Convert the name of this repo to be Meta This repo is going to be a hub for uchuu stuff so docs and also general issues that affect the whole circle. "__label__bug [1][HarukaMa] UI should not allow committee and witness feed flags together You can't allow committee members and witnesses to publish feeds for smartcoins simultaneously. When creating or modifying a smartcoin, the corresponding flags should not be allowed to be enabled together, either by an error notify or disabling another one." "__label__bug MySQL stored procedure `is_deterministic` = 'NO' suppresses stored procedure report I tried running SchemaSpy on a MySQL database that included stored procedures. Apparently if a stored procedure is marked non-deterministic in MySQL's information schema, it keeps the stored procedure report from being generated. ## Expected Behavior It should display analysis of stored procedures. ## Current Behavior ``` WARN - Failed to retrieve stored procedure/function details: java.sql.SQLDataException: Cannot determine value type from string 'NO': select routine_name, routine_type, dtd_identifier, routine_body, routine_definition, is_deterministic, sql_data_access, security_type, sql_mode, routine_comment from information_schema.routines where routine_schema=:schema ``` Running... ```mysql SELECT routine_name, routine_type, dtd_identifier, routine_body, routine_definition, is_deterministic, sql_data_access, security_type, sql_mode, routine_comment FROM information_schema.routines WHERE routine_schema='...' ``` ...works. Presumably the value `NO` for the `is_deterministic` in the output stops the report on procedures/routines from working. ## Steps to Reproduce (for bugs) ```mysql CREATE DATABASE test; USE test; CREATE FUNCTION hello (s CHAR(20)) RETURNS CHAR(50) NOT DETERMINISTIC RETURN CONCAT('Hello, ',s,'!'); ``` ```bash docker run -v ""$PWD:/output"" schemaspy/schemaspy:snapshot -t mysql -host localhost -u root -p root -db test -connprops useSSL\\=false -schemas ""test"" ``` ## Context * Database type (e.g. MySQL): MySQL 5.6 * Your DDL (sample how to reproduce the issue): ```mysql CREATE DATABASE test; USE test; CREATE FUNCTION hello (s CHAR(20)) RETURNS CHAR(50) NOT DETERMINISTIC RETURN CONCAT('Hello, ',s,'!'); ``` * Full command including arguments how you run SchemaSpy: ```bash docker run -v ""$PWD:/output"" schemaspy/schemaspy:snapshot -t mysql -host localhost -u root -p root -db test -connprops useSSL\\=false -schemas ""test"" ``` ## Your Environment * Version used: `6.0.0-rc2` * Environment name and version (e.g. Chrome 39): Docker " "__label__enhancement New Year's packs I propose adding the following from the most recent releases: - Banchan - Mandodo's newest minipack - ~Eurobeat is fantastic (apparently a bit wobbly)~ (mute resync) - Koreyja - Holiday Hoedown - ~Trancemania 3~ Difficulty range should be fine. To the best of my knowledge, none of these contain objectionable songs. " "__label__question Suggestion: allow use of git submodules for libraries Supporting the use of git submodules could help with the use of mbed with libraries, since it would show an easy link to the submodule repository at the referenced commit, and would remove the clutter of the .lib files that mbed uses currently. .lib files would be kept for backwards compatability and use with other SCMs. currently, attempting to use git submodules in addition to the .lib files causes mbed to throw errors about not being able to find a valid repository" "__label__bug import/extensions: does not complain about .coffee I've got the following config: ``` js ['error', 'never', { js: 'always', jsx: 'always', }] ``` However, `import '../vendor/blah.coffee';` does not warn. I would expect it to resolve the import, extract everything after the last dot, and then use that extension to determine that it should be omitted. " "__label__bug V2 yaml parsing error due to extra quotes around boolean ### Description DELRAWFILES had quotes around the true setting, which cause the /tmp/arm_config.yaml to insert double sets of quotes which produced a parsing error. Removing these quotes resolves the error. Fixed in PR #133 which removes the quotes from the sample config. No yaml error after removing extra quotes. ### Log file yaml.parser.ParserError: while parsing a block mapping in ""/tmp/arm_config.yaml"", line 1, column 1 expected , but found '' in ""/tmp/arm_config.yaml"", line 21, column 16 ### Config file DELRAWFILES: """"true"""" ### Environment [OS Distribution and version (run ""cat /etc/lsb-release"")] DISTRIB_ID=Ubuntu DISTRIB_RELEASE=16.04 DISTRIB_CODENAME=xenial DISTRIB_DESCRIPTION=""Ubuntu 16.04.3 LTS"" [ARM Release Version or if cloning from git branch/commit (run ""git branch"" and ""git log -1"" to get this)] * v2_master commit 000609d49a977b305b276e9f4fdcb5492e8afda0 Merge: f74484d 037f0d7 Author: muckngrind4 Date: Wed Feb 7 22:32:29 2018 -0800 Merge pull request #131 from automatic-ripping-machine/v2mkv Added ARM version" __label__enhancement Instalação da Internacionalização via i18n https://github.com/Anthony-Gaudino/jekyll-multiple-languages-plugin "__label__bug [TW-1730] Blocked tasks match +UNBLOCKED _Jeremy John Reeder on 2015-11-30T17:46:59Z says:_ I have many tasks that are blocked. With recent versions of Taskwarrior, these now match the +UNBLOCKED (and hence +READY) filter. Here's an example, where the `task info` output shows both ""This task is blocked"" and ""UNBLOCKED"". {code} > task 84 info Name Value ID 84 Description Achieve marksmanship level 3 03-02 | Requirement: MMQ score >= 40/45 Status Pending Project milic This task blocked by 83 Achieve marksmanship level 2 This task is blocking 85 Achieve marksmanship level 4 Entered 2015-02-27T08:44 (9mo) Last modified 2015-11-27T08:32 (3d) Virtual tags ANNOTATED PENDING READY UDA UNBLOCKED PROJECT PRIORITY UUID db8cf895-0041-4610-85da-cd2f61c52a93 Urgency 7.212 Priority M {code}" "__label__bug Hashing consistency concerns <blockquote class=""twitter-tweet"" data-lang=""en""><p lang=""en"" dir=""ltr""><a href=""https://twitter.com/arrdem?ref_src=twsrc%5Etfw"">@arrdem</a> isn't the use of hashCode for obj hashing brittle in shelving? If I recall nothing guarantees it'd be consistent across runs of the same app.</p>— Max Penet (@mpenet) <a href=""https://twitter.com/mpenet/status/961653656738287618?ref_src=twsrc%5Etfw"">February 8, 2018</a></blockquote> Max was also kind enough https://github.com/replikativ/hasch, which seems to provide a consistent SHA512 -> UUID over Clojure datastructures. Definitely worth looking into this, and more likely than not just throwing out my own content hash implementation." "__label__question How to create a custom query to insert quick reply buttons in direct messages Hi, Linvi! I'm working with tweetinvi to create a DM chatbot, and I'd find it great to have some quick reply buttons in DM, which doesn't seem so hard on Twitter's repository but it turns out to be a nightmare when I try to implement it. Is there already a way to do so through tweetinvi? any hint on how I might do, maybe with a custom query? Thank you so much!" "__label__bug 10.0.6: possible issue with encryption, syncs fail with ""503 Encryption not ready: Private Key missing for user"" (for server data reference see #30341) After upgrade from production 10.0.4 to 10.0.6 (tarball) I see 503 sync errors appearing for some but not all files on a newly created user with server-side encryption on. On the sync client (2.4.0 (build 8911)): ""server sends 503 service unavailable"" owncloud.log: {""reqId"":""1f1c026a-96e6-47e0-a592-8f777be73ba3"",""level"":4,""time"":""February 04, 2018 11:14:00"",""remoteAddr"":""79.241.73.200"",""user"":""thommie3"",""app"":""webdav"",""method"":""PUT"",""url"":""\/owncloud\/remote.php\/dav\/files\/thommie3\/Lesen\/33%20Regeln%20von%20Microsoft%20und%20Markus%20Albers.pdf"",""message"":""Exception: {\""Message\"":\""HTTP\\\/1.1 503 Encryption not ready: Private Key missing for user: please try to log-out and log-in again\"",\""Exception\"":\""Sabre\\\\DAV\\\\Exception\\\\ServiceUnavailable\"",\""Code\"":0,\""Trace\"":\""#0 \\\/var\\\/www\\\/owncloud\\\/apps\\\/dav\\\/lib\\\/Connector\\\/Sabre\\\/File.php(183): OCA\\\\DAV\\\\Connector\\\\Sabre\\\\File->convertToSabreException(Object(OCA\\\\Encryption\\\\Exceptions\\\\PrivateKeyMissingException))\\n#1 \\\/var\\\/www\\\/owncloud\\\/apps\\\/dav\\\/lib\\\/Connector\\\/Sabre\\\/Directory.php(171): OCA\\\\DAV\\\\Connector\\\\Sabre\\\\File->put(Resource id #143)\\n#2 \\\/var\\\/www\\\/owncloud\\\/lib\\\/composer\\\/sabre\\\/dav\\\/lib\\\/DAV\\\/Server.php(1095): OCA\\\\DAV\\\\Connector\\\\Sabre\\\\Directory->createFile('33 Regeln von M...', Resource id #143)\\n#3 \\\/var\\\/www\\\/owncloud\\\/lib\\\/composer\\\/sabre\\\/dav\\\/lib\\\/DAV\\\/CorePlugin.php(525): Sabre\\\\DAV\\\\Server->createFile('files\\\/thommie3\\\/...', Resource id #143, NULL)\\n#4 [internal function]: Sabre\\\\DAV\\\\CorePlugin->httpPut(Object(Sabre\\\\HTTP\\\\Request), Object(Sabre\\\\HTTP\\\\Response))\\n#5 \\\/var\\\/www\\\/owncloud\\\/lib\\\/composer\\\/sabre\\\/event\\\/lib\\\/EventEmitterTrait.php(105): call_user_func_array(Array, Array)\\n#6 \\\/var\\\/www\\\/owncloud\\\/lib\\\/composer\\\/sabre\\\/dav\\\/lib\\\/DAV\\\/Server.php(479): Sabre\\\\Event\\\\EventEmitter->emit('method:PUT', Array)\\n#7 \\\/var\\\/www\\\/owncloud\\\/lib\\\/composer\\\/sabre\\\/dav\\\/lib\\\/DAV\\\/Server.php(254): Sabre\\\\DAV\\\\Server->invokeMethod(Object(Sabre\\\\HTTP\\\\Request), Object(Sabre\\\\HTTP\\\\Response))\\n#8 \\\/var\\\/www\\\/owncloud\\\/apps\\\/dav\\\/lib\\\/Server.php(256): Sabre\\\\DAV\\\\Server->exec()\\n#9 \\\/var\\\/www\\\/owncloud\\\/apps\\\/dav\\\/appinfo\\\/v2\\\/remote.php(31): OCA\\\\DAV\\\\Server->exec()\\n#10 \\\/var\\\/www\\\/owncloud\\\/remote.php(165): require_once('\\\/var\\\/www\\\/ownclo...')\\n#11 {main}\"",\""File\"":\""\\\/var\\\/www\\\/owncloud\\\/apps\\\/dav\\\/lib\\\/Connector\\\/Sabre\\\/File.php\"",\""Line\"":620,\""User\"":\""thommie3\""}""} root@www:/var/www/owncloud# ""sudo -u www-data php occ files:scan --repair "" was done for this user, but no changes The sync is globally blocked after apperarance of this error, also for other files. The files are still accessible on the web interface though. 503 errors never appeared before on this instance, the server side config (Webserver, REDIS, database etc.) are unchanged between 10.0.4 and 10.0.6. encryption app is 1.3.1 (latest) as shipped with 10.0.6 Is there some interference with OAuth2?" "__label__enhancement [TW-1526] rc.include < file > overrides _David Patrick on 2015-01-26T19:44:54Z says:_ Currently, the .taskrc configuration file can be extended with include files, simply by naming them, like include ~/path/to/file this feature request is to allow an rc override 'rc.include=~/path/to/file'. This command imitates other rc.< name >=< value > overrides, but instead, appends (prepends?) the contents of the included file to the current taskrc. This should also be usable to extend an rc:< path-to-alternate-file > override. " "__label__enhancement MisProductos Listado de mis productos, dando la posibilida a eliminarlos y ponerlos visibles o no." "__label__enhancement Improve dusk server management Currently a dusk server can be left running in the background as a loose process if the main test process is terminated early, e.g. we `exit()` or `dd()` during execution of the test. (The same with `$response->dump()` inside a dusk closure, since it dd()'s the response content). I've begun to prepare some improvements to kill the child process with the Dusk server when we exit early, however, while testing locally passes, Travis is still failing. see [the feature/improve-server-management](https://github.com/orchestral/testbench-dusk/tree/feature/improve-server-management) branch" __label__enhancement Show synchronizer block height instead of actual block heigh Suggest we should show the `synchronizer` block height instead of actual chain block height because of the block delay on the DB side. I guess it might be more confusing to me since I know what block the synchronizer vs actual block height is... Leaving it here as food for thought. "__label__bug PB Displaying Name since 1.1.4 Hi, I have a problem since new version 1.1.4. When i open a topic with the steam block, the name is displayed first like this (screen1) then after 60 seconds (maybe the setting in ACP), the name is displayed correctly. In 1.1.3 I didn't have the problem, the name was displayed correctly at first. Thanks ![steamstatus1 4](https://user-images.githubusercontent.com/13719235/34479594-fc448522-efa7-11e7-9aa6-04f85c8ce1ea.png) ![steamstatus1 4_2](https://user-images.githubusercontent.com/13719235/34479595-fc640c30-efa7-11e7-9624-0e0c74f5877c.png) my settings ![steam status_settings](https://user-images.githubusercontent.com/13719235/34479872-5e5d29de-efa9-11e7-85a0-553bfa34d466.png) " "__label__bug Doesn't work with Git installed by MSYS2 Pacman Almost same title, but not a duplicate of #70. I am using MSYS2 environment and Git 2.14.1 delivered via MSYS2 Pacman command `pacman -S git`. I installed GCMW set Git config `credential.helper` (`manager`) and `credential.modalPrompt` (`true`). However, GCMW doesn't work for my environment. ```` $ git credential-manager git: 'credential-manager' is not a git command. See 'git --help'. ```` It's because GCMW searches for `/usr/libexec/git-core` to find Git installation when GCMW installs itself. `whereis` says: ```` $ whereis git-core git-core: /usr/lib/git-core /usr/share/git-core ```` So GCMW installs itself in `%UserProfile%\bin`. By default, current MSYS2 shell `$PATH` does not have the directory even if that path is added as `%PATH%`. (FYI, MSYS2 shell inherits Windows environment variables only if `MSYS2_PATH_TYPE=inherit` is set. See <https://sourceforge.net/p/msys2/discussion/general/thread/dbe17030/>.) As a solution, I think it's natural for GCMW installer to search for `/usr/lib/git-core` also." "__label__bug Incorrect handling of object_array (? parameter replacement in python) Preparation: ``` sql CREATE TABLE bag ( id short PRIMARY KEY, ob array(object) ); INSERT INTO bag(id) VALUES(1); ``` Code in Python (3.5.2, linux mint, crate package 0.21.1): ``` python from crate import client query = ''' UPDATE bag SET ob = [?] WHERE id = ? ''' idval = 1 obval = {'bbb': 3} conn = client.connect('http://192.168.1.25:4200') cur = conn.cursor() cur.execute(query, (obval, idval)) # crate 2.3.2: BUG: Raise: crate.client.exceptions.ProgrammingError: SQLActionException[SQLParseException: No cast function found for return type object_array] # crate 2.2.6: OK, record is updated. ``` Crate run from official docker image. BTW: When ? is replaced with verbatim object value (i.e. SQL contains actual values) than code works correctly also in 2.3.2. Related issue: #6834" "__label__bug projectile-find-tag: No applicable method: xref-backend-identifier-completion-table, nil Here are some things you should try before filing a bug report: ### Observed behavior CTRL-] used to find a tag now raises `No applicable method: xref-backend-identifier-completion-table, nil` I see CTRL-] in bound to projectille-find-tag ### Expected behavior I would have expected the same behavior as what we have with find-tag ### Steps to reproduce 1. Create a tag file (ctags -e) 2. start emacs 3. go over a name an type CTRL-] ### System information - emacsclient 25.2.2 - console mode <details> <summary>System information</summary> ``` DOOM Doctor Running Emacs v25.2.2, commit 7bfd7c1ade93ac16788eae90d72a182ddcd32987 shell: /bin/bash Compiled with: SOUND NOTIFY LIBSELINUX ZLIB uname -a: PST 2018 i686 i686 i386 GNU/Linux Attempt to load DOOM: success! Loaded v2.0.9 Revision 7bfd7c1ade93ac16788eae90d72a182ddcd32987 ---- test-emacs test-windows test-fonts Warning: couldn’t find material-design-icons.ttf font in /home/amoriello/.local/share/fonts/ You can install it by running ‘M-x all-the-icons-install-fonts’ within Emacs. This could also mean you’ve installed them in non-standard locations, in which case, ignore this warning. Warning: couldn’t find weathericons.ttf font in /home/amoriello/.local/share/fonts/ You can install it by running ‘M-x all-the-icons-install-fonts’ within Emacs. This could also mean you’ve installed them in non-standard locations, in which case, ignore this warning. Warning: couldn’t find octicons.ttf font in /home/amoriello/.local/share/fonts/ You can install it by running ‘M-x all-the-icons-install-fonts’ within Emacs. This could also mean you’ve installed them in non-standard locations, in which case, ignore this warning. Warning: couldn’t find fontawesome.ttf font in /home/amoriello/.local/share/fonts/ You can install it by running ‘M-x all-the-icons-install-fonts’ within Emacs. This could also mean you’ve installed them in non-standard locations, in which case, ignore this warning. Warning: couldn’t find file-icons.ttf font in /home/amoriello/.local/share/fonts/ You can install it by running ‘M-x all-the-icons-install-fonts’ within Emacs. This could also mean you’ve installed them in non-standard locations, in which case, ignore this warning. Warning: couldn’t find all-the-icons.ttf font in /home/amoriello/.local/share/fonts/ You can install it by running ‘M-x all-the-icons-install-fonts’ within Emacs. This could also mean you’ve installed them in non-standard locations, in which case, ignore this warning. test-gnutls test-tls Warning: You didn’t install Emacs with gnutls support This may cause ’pecular error’ errors with the Doom doctor, and is likely to interfere with package management. Your mileage may vary. test-tar Everything seems fine, happy Emacs’ing! ``` </details> " "__label__bug loading state doesn't get reset in case of network problem with any chunk of data ### Description In case of a network error, vaadin-grid should unset the loading state. ### Expected outcome Loading state is unset in case of unsuccessful AJAX request. ### Actual outcome Loading state is set on vaadin-grid. ### Live Demo https://cdn.vaadin.com/vaadin-grid/5.0.0-alpha3/demo/#grid-data-demos ### Steps to reproduce 1. Go to the 'Assigning Remote/Function Data' demo example 2. Go to the offline mode 3. Scroll down the 'Assigning Remote/Function Data' grid " "__label__bug how to disable phpbrew connect pecl ### Output ``` ☁ ~ phpbrew ext enable xdebug PHP Warning: file_get_contents(http://pecl.php.net/channel.xml): failed to open stream: Operation timed out in phar:///usr/local/bin/phpbrew/vendor/corneltek/pearx/src/PEARX/Core.php on line 35 Warning: file_get_contents(http://pecl.php.net/channel.xml): failed to open stream: Operation timed out in phar:///usr/local/bin/phpbrew/vendor/corneltek/pearx/src/PEARX/Core.php on line 35 ===> Enabling extension xdebug [*] xdebug extension is enabled. ``` How to disable phpbrew connecting pecl.php.net? When I enable/disable extensions, phpbrew try to connect pecl.php.net, even the extension is already installed, that's waste too much time; and when I'm offline, it makes error." "__label__bug increase speed of execution At the moment, the code goes through default garbage collection which is leading to massive amounts of memory usage. We need to aggressively garbage collect the variables or delete unused variables. We can also use [multiprocessing](https://docs.python.org/2.7/library/multiprocessing.html) techniques to parallelize the work. ### References #### https://docs.python.org/2/library/gc.html https://docs.python.org/2.7/library/multiprocessing.html https://stackoverflow.com/questions/32167386/force-garbage-collection-in-python-to-free-memory https://stackoverflow.com/questions/1316767/how-can-i-explicitly-free-memory-in-python" "__label__enhancement Require only address when adding existing token Create saga that load token's `name`, `code`, `totalSupply` from ethereum" __label__bug xtensa-esp32-elf-gcc.exe: error: unrecognized command line option '-no-pie' OS: Windows 10 Board: ESP32 Zephyr at [e5b3918](https://github.com/zephyrproject-rtos/zephyr/commit/e5b3918a9ffc80e6ba079c6a0eff60aaa42917d0) esp-idf at [dc8c338](https://github.com/espressif/esp-idf/commit/dc8c33892e0082822c4c69afa201c02d9758a1c0) ESP32 Win32 msys2 environment: [2017-09-18](https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20170918.zip) MSYS zephyr/samples/hello_world $ make BOARD=esp32 ``` [...] xtensa-esp32-elf-gcc.exe: error: unrecognized command line option '-no-pie' make[2]: *** [/s/sb-dev/zephyr/Makefile:876: zephyr_prebuilt.elf] Error 1 make[2]: Leaving directory '/s/sb-dev/zephyr/samples/hello_world/outdir/esp32' make[1]: *** [Makefile:178: sub-make] Error 2 make[1]: Leaving directory '/s/sb-dev/zephyr' make: *** [/s/sb-dev/zephyr/Makefile.inc:82: all] Error 2 ``` see https://github.com/zephyrproject-rtos/zephyr/commit/cdec108bfe0ff33c94542b31ef19ce547e2d5f67 __label__enhancement Parallel train n-way Siamese network (i.e. tied weights) "__label__enhancement Use both sonar-project.properties and scanner-properties provided by Bitrise I think I would be nice to be able to use both `sonar-project.properties` and the scanner-properties provided by Bitrise. I want to be able to use Bitrise properties, for example the Sonarqube server URL and login, but also let the project properties near the project itself, in `sonar-scanner.properties`. This could be done by appending `scanner-properties` to the `sonar-scanner.properties` file, for example `echo -n ""${scanner_properties}"" >> sonar-project.properties`." "__label__bug Preklapanie: chybne preradene prihlasky do spracovanych Ked osoba uz existuje v AIS2, referentka dostane na vyber ""Zrusit"" alebo ""Pokracovat s datami z AIS2"" alebo ""Pokracovat s datami z prihlasky"". Ked sa rozhodne ""Zrusit"", prihlaska sa aj napriek tomu prehodi do stavu ""Spracovana"", pricom by mala ostat v stave ""Vytlacena""." "__label__question configureIAMCredentials Question Hi, I created an IAM User and I have the Access key ID and the Secret access key. I'm using them in the following way: ``` mqqt_client = AWSIoTMQTTClient(client_id) mqqt_client.configureEndpoint(host, 8883) mqqt_client.configureIAMCredentials('ACCESS_KEY_ID', 'SECRET_ACCESS_KEY') mqqt_client.configureAutoReconnectBackoffTime(1, 32, 20) mqqt_client.configureOfflinePublishQueueing(-1) # Infinite offline Publish queueing mqqt_client.configureDrainingFrequency(2) # Draining: 2 Hz mqqt_client.configureConnectDisconnectTimeout(10) # 10 sec mqqt_client.configureMQTTOperationTimeout(5) # 5 sec mqqt_client.onMessage = on_message ``` But the console says: `AWSIoTPythonSDK.core.protocol.mqtt_core - ERROR - Connect timed out` I'm missing something? Is possible to use an IAM user with AWSIoTMQTTClient? Thanks!" __label__bug Undefined key added to daily limber Where are undefined keys being assigned? Create a To Be Addressed column in xlsx with key in dict. "__label__enhancement Use Logging facility At present, the application is too verbose. Essentially we have two problems. * All kinds of information printed on terminal * Not adhering to UNIX philosophy of staying silent when there are no surprises. Using the [logging](https://docs.python.org/2/library/logging.html) from standard library solves both the problems. We can specify different log levels and redirect the output to a log file instead of standard output." "__label__bug [TW-899] status change to ""waiting"" fails _Eric Fluger on 2010-12-30T17:49:49Z says:_ when task is saved after waiting date is added using task edit status should magically change to waiting but does not." __label__enhancement [* Sequence] Support for full US phone number extraction "__label__bug isort fixer finds ~/.isort.cfg which overrides local project's setup.cfg ## Information VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Dec 7 2017 11:42:48) macOS version Operating System: MacOS High Sierra ### :ALEInfo ``` Current Filetype: python Available Linters: ['flake8', 'mypy', 'prospector', 'pycodestyle', 'pyflakes', 'pylint', 'pyls'] Enabled Linters: ['flake8', 'mypy', 'pylint'] Linter Variables: let g:ale_python_flake8_args = '--ignore=E123 --max-line-length=89' let g:ale_python_flake8_executable = 'flake8' let g:ale_python_flake8_options = '--ignore=E123 --max-line-length=89' let g:ale_python_flake8_use_global = 0 let g:ale_python_mypy_executable = 'mypy' let g:ale_python_mypy_options = '' let g:ale_python_mypy_use_global = 0 let g:ale_python_pylint_executable = 'pylint' let g:ale_python_pylint_options = '' let g:ale_python_pylint_use_global = 0 Global Variables: let g:ale_echo_cursor = 1 let g:ale_echo_msg_error_str = 'Error' let g:ale_echo_msg_format = '%code: %%s' let g:ale_echo_msg_warning_str = 'Warning' let g:ale_enabled = 1 let g:ale_fix_on_save = 0 let g:ale_fixers = {'python': ['remove_trailing_lines', 'trim_whitespace', 'add_blank_lines_for_python_control_statements', 'isort', 'autopep8']} let g:ale_keep_list_window_open = 0 let g:ale_lint_delay = 200 let g:ale_lint_on_enter = 1 let g:ale_lint_on_save = 1 let g:ale_lint_on_text_changed = 'always' let g:ale_linter_aliases = {} let g:ale_linters = {} let g:ale_open_list = 0 let g:ale_set_highlights = 1 let g:ale_set_loclist = 1 let g:ale_set_quickfix = 0 let g:ale_set_signs = 1 let g:ale_sign_column_always = 1 let g:ale_sign_error = '>>' let g:ale_sign_offset = 1000000 let g:ale_sign_warning = '--' let g:ale_statusline_format = ['%d error(s)', '%d warning(s)', 'OK'] let g:ale_warn_about_trailing_whitespace = 1 ``` ## What went wrong The `isort` fixer is picking up my config in `~/.isort.cfg`, overriding the defaults set in the projects `setup.cfg`. Since `isort` is able to use both `.isort.cfg` and `setup.cfg` it should check for those in the project before resorting to the one in my home directory (which should be used as a fallback). `isort` already has a built-in search, so long as the current working directory is the top-level directory for the project it should already do the right thing: https://github.com/timothycrosley/isort/wiki/isort-Settings ## Reproducing the bug Create a `~/.isort.cfg` and in your Python project don't, but add settings to `setup.cfg`. Steps for repeating the bug: 1. Create an `~/.isort.cfg` with the following: ``` [settings] line_length = 80 multi_line_output=3 include_trailing_comma=1 use_parentheses=1 ``` 2. In `~/tmp/` create `setup.cfg` with: ``` [isort] line_length = 80 multi_line_output=3 include_trailing_comma=1 use_parentheses=1 known_standard_library=myveryhappylib sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER default_section=THIRDPARTY not_skip = __init__.py ``` 3. In `~/tmp/` create a file named `test.py` with the following contents: ``` import sys import something import myveryhappylib ``` 4. Run `:ALEFix` on the file, notice it now becomes: ``` import sys import myveryhappylib import something ``` Expected output: ``` import myveryhappylib import sys import something ``` " "__label__bug [TW-40] Localized weekstart configuration variable _Frédéric Mangano says:_ Currently, the weekstart configuration variable expects different values depending on the localization, which means configurations files would break across localized builds. Since only Sunday and Monday are allowed, I suggest the following test that doesn’t use Date::dayOfWeek: <pre> std::string weekStart = ucFirst (context.config.get (""weekstart"")); if (weekStart != ""Sunday"" && weekStart != ""Monday"") throw std::string (STRING_DATE_BAD_WEEKSTART); </pre> The error string should be corrected too. Whether to allow fancy capitalizations or none at all is another matter." "__label__enhancement [TW-1339] urgency.uda.<uda>.coefficient = _David Patrick on 2014-06-03T19:15:27Z says:_ There does not seem to be a way to assign an urgency coefficient to a named User Defined Attribute, but there should be!" "__label__bug MediaPlayer TypeScript functions have Void as a return ### Bug report MediaPlayer TypeScript functions have Void as a return. Some of the functions can return a value. For example [`mute`](https://docs.telerik.com/kendo-ui/api/javascript/ui/mediaplayer#methods-mute). ### Expected/desired behavior The volume, fullscreen, mute, titlebar, toolbar, etc. should be able to return the desired results. ### Environment * **Kendo UI version:** 2017.3.1026 * **jQuery version:** 1.12.3 * **Browser:** [all] " "__label__enhancement Seite ""Artefakte"": Liste der Artefakt-Typen in Filter alphabetisch sortieren Derzeit sieht sie Liste für das Projekt RRX so aus: - Messmodul-Firmware - Interfacemodul-Firmware - Bootloader - CPLD Relaismodul - CPLD Interfacemodul - Config-File Basis RRX - Config-File Applikation RRX - Config-File Oszi RRX - Algo-Testumgebung - TEDS-Writer (offenbar sortiert nach artifact_type_id). Diese Liste gehört sortiert nach Artefakt-Typ-Name." __label__bug missing transform typing transform function typing is missing inside [Configuration interface](https://github.com/rollbar/rollbar.js/blob/master/index.d.ts#L31). I'm getting an error with typescript when using options.transform. __label__enhancement [TW-1245] encryption plug-in _David Patrick on 2009-07-07T01:07:28Z says:_ that makes it easy to secure your data. "__label__bug SQLUtils.toStatementList 解析 CREATE INDEX LOCAL ONLINE失败 SQLUtils.toStatementList 解析create index idx_id on t2(id) local online; 时会将此语句解析成""create index idx_id on t2(id) local"" 和 ""online"" 两个语句 导致执行失败" "__label__bug download command with large files is not working on 2.3 ## Empire Version 2.3 Release ## OS Information (Linux flavor, Python version) C2 Server: Ubuntu Server 14.04 LTS Client: Win 10 x64 (two different versions) ## Expected behavior and description of the error, including any actions taken immediately prior to the error. The more detail the better. When trying to download files (ranging in size, approx. from 1MB to 150MB) using the ""download"" command, the agent acknowledges the command but won't download the file, get stuck and stop communicating. Last time it happen I immediatly started a new different agent with the server side 2.0 Release (on the same C2 Server), and the download was successful. ## Screenshot of error, embedded text output, or Pastebin link to the error ## Any additional information would also appreciate an explanation on how to stop those annoying console messages when part of file had been downloaded." "__label__bug adjustment length of ef to ncol of veh in emi is wrong When ncol of veh is different with length of ef, `emis` and `emis_cold` adjust the length of ef to mtch length of veh. The procedure has a bug when ncol of veh is bigger than length ef" __label__bug No playback when file contains unicode characters "__label__question Request Minimum Time #### Summary A way to specify the minimum amount of time before a request is complete. I would like to request either documentation on how to do this, if currently possible, or for the feature to be implemented into core. The use case for this is loading spinners. We want a loading spinner to show for a minimum of ~ 600ms to signify something is happening in the application, Currently a request takes ~ 200ms which is too short for a UI change to not look broken, but we cannot guarantee that it will always be that quick, so a loading spinner is necessary Expected result: minimumTime: 1000 would say that a request that takes ~200ms will wait an additional ~800ms before response happens. A request that takes 1200ms will return immediately upon completing request. " "__label__bug [TW-11] fish shell does not complete aliases _Scott Kostyshak on 2012-07-28T20:22:09Z says:_ This was fixed in bash (see http://taskwarrior.org/issues/1043) and should be an easy fix for fish. A fix for bash autocompletion was to merge the output of @_commands@ and @_aliases@, and sort the result: <pre> commands_aliases=$(echo $(task _commands; task _aliases) | tr "" "" ""\n""|sort|tr ""\n"" "" "") </pre> and use that instead of just the output from @_commands@. I'm not sure (I don't use fish) if one could just replace <pre> task _commands </pre> in scripts/fish/task.fish, with <pre> echo $(task _commands; task _aliases) | tr "" "" ""\n""|sort|tr ""\n"" "" "") </pre>" __label__enhancement 3d pose estimation from markers this is implemented as a proof of concept. It need to be done cleanly and with line documentation because it will become a fundamental. __label__bug Lithuanian chief of staff **OS:** [e.g. Windows 7] **Version:** [e.g. 0.6] Lithuania has no Chief of Staff to choose from - [no] Do you have this issue in vanilla? - [no] Were you in multiplayer? - [no] Were you running other mods (music mod doesn't count)? "__label__bug Unicode Download Location crash on Linux <!-- Delete non-relevant parts if this is not a bug report --> #### Please, fill all relevant items: #### - [*] I have read CONTRIBUTING.rst - [*] I have tried with the latest pre-release version and I still can reproduce the issue. ##### Tribler version/branch+revision: ##### next on a733321cc168ce8a0a8564c365f1c9f028f4e22b also tested on v7.1.0-mining-preview and 7.0.0 ##### Operating system and version: ##### Arch Linux x64, kernel 3.14, Gnome Shell, all up to date ##### Expected behavior: ##### Start file download ##### Actual behavior: ##### UnicodeEncodeError and crash ##### Steps to reproduce the behavior: ##### Set download directory to something with unicode. Mine was `/home/viky/Stažené`. The original `/home/viky/TriblerSomething` was ok. ##### Relevant log file output: ##### in `~/.Tribler/logs/tribler-gui-error.log` ``` ERROR 1517352358.56 tribler_window:84 Traceback (most recent call last): File ""/home/viky/tribler/TriblerGUI/tribler_window.py"", line 488, in on_start_download_action self.dialog.dialog_widget.files_list_view.topLevelItemCount()) File ""/home/viky/tribler/TriblerGUI/tribler_window.py"", line 321, in perform_start_download_request encoded_destination = destination.encode('hex') File ""/usr/lib/python2.7/encodings/hex_codec.py"", line 24, in hex_encode output = binascii.b2a_hex(input) UnicodeEncodeError: 'ascii' codec can't encode character u'\u017e' in position 14: ordinal not in range(128) ```" "__label__bug Google+ Link Issue Your Google+ link that you use in the dashboard, on your GitHub, and probably somewhere else looks like it tells the webapp to switch user accounts. The `/u/1/` means to use the second logged in account (0 being first). You can make you link shorter and prevent unexpected account switching by removing that piece of the URL. ### Current https://plus.google.com/u/1/+DaniMahardhika ### Expected https://plus.google.com/+DaniMahardhika" __label__enhancement Editing listing type It would be 💕 ✨ 🌈 🦄 and save a lot of back and forth if administrators could switch a job type from member (free) to non-member (paid) **after** the the listing has been submitted. Is that possible? "__label__bug senderName invalid value Olá, gostaria de saber como (e onde) corrigir o erro quando uma pessoa informa um nome fora do padrão, como por exemplo informa com dois espaços. Exemplo do erro: `02/09/2017 19:50:33 PagSeguro.Session[error]: <?xml version=""1.0"" encoding=""ISO-8859-1"" standalone=""yes""?><errors><error><code>11012</code><message>`**senderName invalid value**`: Nome Da Pessoa DE CLIENTE </message></error></errors>` Eu descobri que esse erro ocorre sempre que o nome do comprador é diferente do padrão estabelecido pelo PagSeguro, que é Nome + sobrenome, sem espaços duplicados e obrigatoriamente deve ter apenas letras e espaços, nada de números, o que é até coerente, desde que seu sistema esteja preparado para isso. Não consegui encontrar onde deve editar, quais arquivos, para resolver isso " "__label__bug Unauthorized banner has excess whitespace around it ### Description of feature or bug <img width=""1229"" alt=""screen shot 2018-01-24 at 4 43 16 pm"" src=""https://user-images.githubusercontent.com/697848/35361120-c49d6168-0125-11e8-9ec2-ca8987a0a5f0.png""> Related to changes from #1496, currently only in `staging`. ### Definition of done TODO ------- _After evaluating, edit this part:_ ### Level of effort low ### Implementation outline (if higher than a ""low"" effort): TODO " __label__enhancement VSync Support Add the option to enable VSync to prevent screen tearing. "__label__bug Ripley mining shuttle bug So, when you are in the mining shuttle and its underway, and you attempt to enter it, and the shuttle arrives before you finish, you cannot move unless respawned. I tried everything. ### Steps to reproduce the problem 1. Send mining shuttle 2. Enter and make it move 3. Enter a RIPLEY just before you arrive 4. Never ever move again. ((You are kicked out of the mech)) " __label__bug Backup restore not working correctly - Backup restore not working. - Backup is missing files. __label__enhancement Limit value representation length Maybe it's worth to limit the length of value serialization while printing the mnemonics table: for some values it can be really long. It will be a must-have if running the demonstration task #11. "__label__enhancement Implement log rotation For *nix, we can use [`logrotate`](https://www.digitalocean.com/community/tutorials/how-to-manage-log-files-with-logrotate-on-ubuntu-12-10) and for Windows we can use [LogRotateWin](http://sourceforge.net/projects/logrotatewin/). " __label__bug 永久礼物当做当日礼物被赠送 如题。通过活动获得的永久的礼物,两个B克拉,一启动脚本,就被送了。 __label__enhancement Libraries - Upgrade rpi_ws281x library to latest version. "__label__bug Fix error handling for uploading attachment For the `answerAttachService` and `attachService`, fix the logic in `uploader.onErrorItem`" __label__enhancement Marquee effect on long titles Make the title scroll if its collapsed. __label__enhancement Add Ability to Recognize Child View Click I would really like to be able to tell whether or not a sub child was click or the parent. Being able to tell by the sub view id would be great. I currently have to change FlexibleAdapter and VIewHolder to get this functionality. I would love it if there was an AdvanedItemClickListener that would pass the sub view's id as well as the position. "__label__bug IText.toSVG() does not fully support NUM_FRACTION_DIGITS ## Version 1.7.14 and 1.7.20 (tested) ## Problem Description fabric.Object.NUM_FRACTION_DIGITS = *; Does not apply to ***all*** Coordinates in generated SVG. An IText Object loses precision on the level of character distances. Is there another way to specifiy the fraction precision for Characters? Generally it is not a big problem, but the precision could be higher. ## JSFIDDLE https://jsfiddle.net/u7z36378/7/ ## Steps to reproduce Click toSVG button? ## Expected Behavior Precision of Character positions is is high as fabric.Object.NUM_FRACTION_DIGITS ## Actual Behavior Precision for Characters is always 2. Higher precision could mean less difference between the browsers, when gernerating the svg. Examples below (only the frist 3 characters) Output Chrome: ``` <g transform=""translate(146.57421875 23.1)""> <text xml:space=""preserve"" font-family=""Times New Roman"" font-size=""40"" font-weight=""normal"" style=""stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1; white-space: pre;"" > <tspan x=""-146.07"" y=""12.6"" font-size=""20"" style=""stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: ; opacity: 1; white-space: pre;""> M</tspan> <tspan x=""-128.29"" y=""12.6"" font-size=""28"" style=""stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: ; opacity: 1; white-space: pre;""> y</tspan> <tspan x=""-114.29"" y=""12.6"" font-size=""28"" style=""stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: ; opacity: 1; white-space: pre;""> G</tspan> ``` Output Firefox: ``` <g transform=""translate(146.566665172577 23.1)""> <text xml:space=""preserve"" font-family=""Times New Roman"" font-size=""40"" font-weight=""normal"" style=""stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1; white-space: pre;"" > <tspan x=""-146.07"" y=""12.6"" font-size=""20"" style=""stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: ; opacity: 1; white-space: pre;""> M</tspan> <tspan x=""-128.28"" y=""12.6"" font-size=""28"" style=""stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: ; opacity: 1; white-space: pre;""> y</tspan> <tspan x=""-114.28"" y=""12.6"" font-size=""28"" style=""stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(0,0,0); fill-rule: ; opacity: 1; white-space: pre;""> G</tspan> ``` The different coordinates can be seen in the translate of the groups, as well as the position of some Characters. Frist wrongly created in https://github.com/kangax/fabricjs.com/issues/203" "__label__bug App crashes at launch Python 2.7.14 ```sh $ gitrisky train Traceback (most recent call last): File ""/usr/local/bin/gitrisky"", line 11, in <module> load_entry_point('gitrisky==0.1.0rc0', 'console_scripts', 'gitrisky')() File ""/usr/local/lib/python2.7/dist-packages/click/core.py"", line 722, in __call__ return self.main(*args, **kwargs) File ""/usr/local/lib/python2.7/dist-packages/click/core.py"", line 697, in main rv = self.invoke(ctx) File ""/usr/local/lib/python2.7/dist-packages/click/core.py"", line 1066, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File ""/usr/local/lib/python2.7/dist-packages/click/core.py"", line 895, in invoke return ctx.invoke(self.callback, **ctx.params) File ""/usr/local/lib/python2.7/dist-packages/click/core.py"", line 535, in invoke return callback(*args, **kwargs) File ""/usr/local/lib/python2.7/dist-packages/gitrisky/cli.py"", line 29, in train model.fit(features, labels.label) File ""/usr/local/lib/python2.7/dist-packages/sklearn/ensemble/forest.py"", line 247, in fit X = check_array(X, accept_sparse=""csc"", dtype=DTYPE) File ""/usr/local/lib/python2.7/dist-packages/sklearn/utils/validation.py"", line 433, in check_array array = np.array(array, dtype=dtype, order=order, copy=copy) ValueError: could not convert string to float: MERGE ```" "__label__bug Missing Intrinsics_CUDA.vs2017.vcxproj The current version in the repository is missing Intrinsics_CUDA.vs2017.vcxproj, which the HybridizerBasicSamples.vs2017.sln has a reference to." "__label__bug [TW-1445] Aliases broken: cannot contain multiple arguments anymore _Johannes Schlatow on 2014-10-27T09:38:28Z says:_ In taskwarrior 2.4.0 beta2, aliases that contain multiple words/arguments do not work anymore. This e.g. affects aliases that add certain filters to a report or aliases that execute external scripts, such as: ``` alias.work=list +work alias.now=execute date ```" "__label__question RegistryFS - RFS.Mount I’m new to C#. I see in the main method that an instance of RFS is created. On the next line RFS.Mount() is called. RFS does not have a Mount method. It implements an interface. That interface is part of the DokanNet namespace, but the Mount method belongs to the Dokan class. What is allowing rfs.Mount() to work? I’ve been searching but can’t find anything. I also see that Dokan is a public static class and according to documentation, they do not allow inheritance. Any help would be great." __label__enhancement Various stats on dashboard - item count - average item size - breakdown by URL segment __label__bug LESses cannot be opened @jorisberkhout notified me that no LESses are loading on ETM-SA. I checked with a couple of LESses and got the same error message for all of them: ![image](https://user-images.githubusercontent.com/19907658/35724636-b8c1c5ac-07fe-11e8-9da1-c3ba6439a808.png) "__label__enhancement Create book events Create following events: BookAdded, BookUpdated, BookRemoved" __label__enhancement Addition 画面での戻る進むジェスチャーのスタート位置の判定場所と距離 instagramのwebviewのようなものがほしい https://github.com/kmagiera/react-native-gesture-handler __label__bug autocapitalize not listed for textarea in attributes index The attributes.include file needs to be updated to note that autocapitalize is an attribute for `textarea` as well as `input` "__label__bug When having multiple accounts, only enumerates from the second one The Accounts menu puts a number against each account when there are more than one - except the first one. Most likely the reason is not updating the first entry when creating the second one." __label__enhancement Rework README.md Now since we offer NewPIpeExtractor as a maven repo we might consider to rework the README.md. Also we might add a guide for how to develop the extractor/own services. "__label__bug Accreditation link obscures active links On a small mobile window, the accreditation link/image obscures and prevents access to the password reset links and can even compromise the login button. [https://i.imgur.com/ekiDJCV.png](https://i.imgur.com/ekiDJCV.png) One idea might be to provide built-in functionality to place the link precisely, rather than arbitarily letting it fall bottom right." __label__enhancement task - new taxon name See InVision mockups for overview. https://invis.io/2G5K1Z39M#/199963912_New_Taxon_Name_-_Task_Card_Mockup https://invis.io/2G5K1Z39M#/212983771_1 https://invis.io/2G5K1Z39M#/212983774_All_In_One-01 __label__question 您好,关于showLoading的疑问 请问showLoading的时候点击Loading图以外的地方Loading状态的取消是否可控 __label__bug IE9 and lower does not support classList Need to implement a classList polyfill for IE9 and lower "__label__enhancement Add FEN notation support. Add [FEN notation]() support. This feature will be helpful: * in RSG Chess APIs (The API will be more customizable and comfortable); * in AI algorithm #3; * when checking for the threefold repetition (#5); * when checking for the fifty-move rule #6; Needed fields: - [x] Piece placement; - [x] ~Active colour~; - [x] ~Castling availability~; - [x] ~En passant~; - [ ] ~Halfmove clock~; - [ ] ~Fullmove number~; Additional to-dos: - [ ] ~Separate the functions for more customizable API, more beautiful code and better performance~. - [ ] ~Remove the useless FEN fields and move them to the Chess APIs - https://github.com/RSG-Group/Chess/issues/7#issuecomment-363340776~" __label__enhancement Customer Matching Support (Send API) Add support for: https://developers.facebook.com/docs/messenger-platform/identity/customer-matching "__label__bug Delete key while editing watch expression removes whole thing When editing watch expressions if I press the delete key to remove the character in front of the cursor, it removes the whole expression. Also happens if you select a few characters within the expression and press delete/backspace - backspace works, delete removes the whole expression. I'd expect that if I just selected the expression, and pressed delete, but once I'm actively editing the text it should behave just like a text character delete. ------------ - VSCode Version: 1.19.3 (7c4205b5c6e52a53b81c69d2b2dc8a627abaa0ba) - OS Version: Ubuntu 17.10 x64 Steps to Reproduce: 1. Set up a C++ project (not sure if this is needed). 2. Create a new watch expression. 3. Click to edit the expression. Adding text and backspace works as expected, pressing the delete key removes the whole expression. Does this issue occur when all extensions are disabled? Yes" "__label__enhancement Set proper date range values for start and end date #### Software versions Briefcase vv1.8.0-227-gbebd3f5, Java v1.8, Ubuntu, Aggregate v1.x.x, Collect v1.x.x... #### Problem description There is no restriction of the date range values in the start date and end date datepickers. #### Steps to reproduce the problem Open any datepicker. #### Expected behavior The start date should not exceed current date and when a particular start date is selected, the end date values less than the start date should be disabled instead of giving an error message afterwards. #### Other information Set appropriate date range in the DatePickerProperties. Can I work on this issue?" "__label__bug join type changes silently when left-joining with a list of dataframes #### Code sample, copy-pastable ```python import pandas as pd # Note that index of d2 is _not_ unique d1 = pd.DataFrame({'k': ['K0', 'K1', 'K2'], 'v': [1, 2, 3]}).set_index('k') d2 = pd.DataFrame({'k': ['K0', 'K0', 'K3'], 'v': [4, 5, 6]}).set_index('k') print('DataFrame d1:', d1, sep=""\n"") print('DataFrame d2:', d2, sep=""\n"") print(""d1.join(d2, how='left') looks fine:"") d = d1.join(d2, how='left', lsuffix='_left', rsuffix='_right') print(d) print(""But with d1.join([d2], how='left', ...), K3 shows up in index but shouldn't:"") d = d1.join([d2], how='left', lsuffix='_left', rsuffix='_right') print(d) print(""pd.merge(d1, d2, how='left') works as expected:"") d = pd.merge(d1, d2, how='left', left_index=True, right_index=True) print(d) print(""d1.join([d3], ...) also works as expected when indices are unique:"") d3 = pd.DataFrame({'k': ['K0', 'K4', 'K3'], 'v': [4, 5, 6]}).set_index('k') d = d1.join(d3, how='left', lsuffix='_left', rsuffix='_right') print(d) # Output: # # DataFrame d1: # v # k # K0 1 # K1 2 # K2 3 # # DataFrame d2: # v # k # K0 4 # K0 5 # K3 6 # # d1.join(d2, how='left') looks fine: # v_left v_right # k # K0 1 4.0 # K0 1 5.0 # K1 2 NaN # K2 3 NaN # # But with d1.join([df], how='left', ...), K3 shows up in index but shouldn't: # v_x v_y # k # K0 1.0 4.0 # K0 1.0 5.0 # K1 2.0 NaN # K2 3.0 NaN # K3 NaN 6.0 <----- UNEXPECTED # # pd.merge(d1, d2, how='left') works as expected: # v_x v_y # k # K0 1 4.0 # K0 1 5.0 # K1 2 NaN # K2 3 NaN # # d1.join([d3], ...) also works as expected when indices are unique: # v_left v_right # k # K0 1 4.0 # K1 2 NaN # K2 3 NaN ``` #### Problem description `df.join()` silently changes a 'left' join to an 'outer' join when these conditions are met: - `join()` is called with a sequence of dataframes, e.g. `d1.join([d2], how='left', ...)` - some dataframe has a non-unique index Note that the equivalent call to `merge(d1, d2, how='left', ...)` works just fine. When looking at the [join() code](https://github.com/pandas-dev/pandas/blob/v0.22.0/pandas/core/frame.py#L5337-L5358), I see `concat()` being discarded when dataframe indices are not unique and `merge()` being called instead. This would work perfectly if not `how='left'` had just been changed to `how='outer'` a couple of lines above. #### Expected Output `d1.join(d2, how='left', ...)` should give the same result as `pd.merge(d1, d2, how='left', ...)`. The join type should not be changed. #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit: None python: 3.6.3.final.0 python-bits: 64 OS: Windows OS-release: 10 machine: AMD64 processor: Intel64 Family 6 Model 44 Stepping 2, GenuineIntel byteorder: little LC_ALL: None LANG: None LOCALE: None.None pandas: 0.21.0 pytest: None pip: 9.0.1 setuptools: 36.5.0.post20170921 Cython: None numpy: 1.13.3 scipy: 1.0.0 pyarrow: None xarray: None IPython: 6.2.1 sphinx: None patsy: 0.4.1 dateutil: 2.6.1 pytz: 2017.3 blosc: None bottleneck: None tables: None numexpr: None feather: None matplotlib: 2.1.0 openpyxl: 2.4.8 xlrd: 1.1.0 xlwt: None xlsxwriter: None lxml: None bs4: None html5lib: 1.0.1 sqlalchemy: None pymysql: None psycopg2: None jinja2: 2.9.6 s3fs: None fastparquet: None pandas_gbq: None pandas_datareader: None </details> " "__label__bug question re: bill date availability I am running some calls for bill votes by date (year and month) and not knowing what years/months are available, I ran for both houses from January 1980 to February 2018. A few questions/items of note: - what is the correct start month/year for bill votes for each chamber? - see attached spreadsheet for 4 instances returning 500 error code - see attached spreadsheet for more than 20 instances throwing JSONDecodeError - there are many cases of calls returning no bill votes but I'll assume there really is no data Attached spreadsheet contains all results with anomalies highlighted. Thanks [billvotes.xls.zip](https://github.com/propublica/congress-api-docs/files/1693599/billvotes.xls.zip) " "__label__question Posts failed to index: class_cast_exception Have you searched for similar issues before submitting this one? Yes. Is this a bug, question or feature request? Bug. Describe the issue you encountered: Most posts fail to index with the error ""class_cast_exception"". Current WordPress version: 4.9.2 Current ElasticPress version: 2.4.2 Current Elasticsearch version: 5.5.0 Where do you host your Elasticsearch server: Self-hosted. Other plugins installed (WooCommerce, Simple Redirect Manager, etc..): WooCommerce. Steps to reproduce: 1. wp elasticpress index --setup --show-bulk-errors --url=http://www.mysite.com Console output: ``` - 17: Product A type: class_cast_exception reason: - 16: Product B type: class_cast_exception reason: - 15: Product C type: class_cast_exception reason: ``` Logs: ``` java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long WARN [elasticsearch[192.168.1.2][clusterService#updateTask][T#1]] ClusterService.java:1255 updateTableSchema Ignoring enabled object with no sub-fields DeprecationLogger.java:290 deprecated Deprecated field [include] used, expected [includes] instead ERROR [elasticsearch[192.168.1.2][bulk][T#2]] ClusterService.java:2418 upsertDocument [java.lang.ClassCastException].[shard-1] failed to parse field post=post_modified ```" __label__enhancement User avatar behaviour on project list Avatar should shrink and moves up once past the fold in the project list view "__label__bug Missing scrollbars in project search on OS X in fullscreen-mode When I use project search (Shift+CMD+F) and get a lot of results that can be scrolled through, I see no scrollbar on the right side which means I never know at which scroll position I am nor can I make a guess how long the result set is. Is it just me or is this a bug? --- **Update:** I just noticed that this problem only occurs when I go fullscreen with Atom. In windowed mode I see scroll bars. Here is a video of the issue: https://youtu.be/0P3mpwp6v6w Using Atom 1.8.0 on OS X El Capitan 10.11.5 " __label__bug Blurred text in panel after PageDown or Down keys Blurred text in panel after PageDown or Down keys But not after mouse scroll ![](https://i.imgur.com/PlZPlQA.png) "__label__bug Fix bus text in diagram The ""C Bus"" text overlaps with the C Bus in the two byte model." __label__enhancement Add row click event RowClickEvent should have the following properties - `rowIndex` - Row index clicked. - `dataItem` - the data item at that index. - `originalEvent` - the original click event. "__label__question Break out of hook without throwing an error <!-- Please note this is an issue tracker, not a support forum. For general questions, please use StackOverflow or Slack. For bugs, please fill out the template below. --> ## What are you doing? <!-- Post a minimal, self-contained code sample that reproduces the issue, including models and associations --> ``` sequelize.addHook('beforeFind', (data) => { if (data in cache) end hook else continue with hook lifecycle }); ``` ## What do you expect to happen? I was hoping that when I hit the beforeFind hook, I would be able to break out of it given certain circumstances without being forced to throw an error, thus allowing me to resolve the promise and not query the database. ## What is actually happening? I am unable to actually break out of the lifecycle without throwing an error, forcing me to write additional logic for errors that aren't really supposed to be errors but instead are results that should follow the same success pathway as if the error had never been thrown. __Dialect:__ mysql __Sequelize version:__ 4.32.2 __Tested with latest release:__ Yes Being able to end the cycle early without errors would be incredibly useful for introducing some sort of caching mechanism that could be baked into the sequelize code and not require additional logic outside of it. I may be overlooking something significant, or not realizing a manner in which to resolve this issue given the current tools, but I'm at a loss at the moment. Any assistance or potential updates to permit this would be greatly appreciated!" __label__bug npm start starts the app in development mode Need to allow for environment variable to override this -- especially for our staging server. "__label__bug Node name lookup scalability issues / rate limiting Node name to instance OCID resolution is currently implemented by: - First checking whether or not the given node name matches the display name of a running instance (1 API call) - If it does not call `ListVnicAttachments` and page through results (1 API request per page) - For each `VnicAttachment` in the `ATTACHED` state we GET the associated Vnic (**1 API request per `ATTACHED` `VnicAttachment` in compartment**) - Check node name against the VNICs`hostnameLabel` and `publicIP` The main fault of this algorithm is that the number of HTTP requests increases linearly with the number of instances in the compartment (which is strictly equal to or greater than the number of nodes in the cluster). This (understandably) in turn triggers rate limiting when the number of instances is great enough. **Notes:** - A similar scalability problem was resolved in the CCM by using a `NodeLister` to cache the Nodes in the cluster and then using the Node `providerID` field. - The calls that utilise this node name lookup are `Attach`, `Detach`, and `IsAttached`. - These calls are made from the kube-controller-manager. - We don't cache `GetVnic()` calls so every time we hit the rate limit we start over in an infinite loop of rate limiting." "__label__bug Rollup watch crashes in cmd/PowerShell on windows Hello, Almost every time when I run `rollup -c -w` with minimum configuration, the terminal crashes. I created a reproduction here: https://github.com/csvn/rollup-watch-error. Windows 10 Node: v8.9.0 / v8.9.1 terminals: cmd/PowerShell rollup: ""^0.51.7"" ![Terminal errors](https://raw.githubusercontent.com/csvn/rollup-watch-error/master/rollup-watch-error.gif) " "__label__enhancement Global Rate Limit A global rate limit, to apply across all torrents like uTorrent has, would be great. It would be good to have the option to set independently for upload / download, with an option to change on the fly without restart, if possible." "__label__question SDK support to add certificates in certificate blade, link iot hubs and get list of linked iot hubs <!-- Hi there! thank you for discovering and submitting an issue! Please first tell us a little bit about the environment you're running: --> - **OS and version used:** <Windows 10> <!-- Windows 10, Ubuntu 15.04... --> - **SDK version used:** <Latest from github> <!-- Please include the SDK version --> # Description of the issue: <!-- Please be as detailed as possible: which feature has a problem, how often does it fail, --> Hi, I want to know if the SDK supports retrieving, adding, removing and verifying certificates in the DPS. I also want to if the SDK supports getting the list of linked iot hubs, adding, removing iot hub from the list. If this is not supported can the support for this be added? Thanks Amogh # Code sample exhibiting the issue: <!-- Please remove any connection string information! --> # Console log of the issue: <!-- Please share as much logs as posible, that will help debugging --> <!-- Don't forget to remove any connection string information! --> " "__label__bug AutocompleteFor cannot be found I've followed the instructions but seem to have forgotten something or have done something wrong. I'm getting everything built nicely, but get this error when I try to include it in my view. Code is: @Html.AutocompleteFor(model => model.OrganisatieID, new OrganisationLookup()) Does not contain a definition for 'AutocompleteFor' and no extension method 'AutocompleteFor' accepting a first argument of type 'HtmlHelper<LidModel>' could be found (are you missing a using directive or an assembly reference?) 1_Views_Lid_CreateAdmin.cshtml " "__label__bug ROS leaking in as dependency @dagar We need a CI system set up without any ROS to avoid ROS packages leaking in as unintended dependency: ``` Traceback (most recent call last): File ""/Users/lorenzmeier/src/Firmware/Tools/sitl_gazebo/scripts/jinja_gen.py"", line 9, in <module> import rospkg ImportError: No module named rospkg ``` @TSC21 FYI" "__label__bug Creating servers with the same name in different groups When we add a server with a specific group, this will not be deployed if a server with the same name already exists in another group. We get an error message like this: > Task :mlDeployServers Logging HTTP response body to assist with debugging: {""errorResponse"":{""statusCode"":""404"", ""status"":""Not Found"", ""messageCode"":""MANAGE-NOGROUPWITHSERVER"", ""message"":""MANAGE-NOGROUPWITHSERVER: (err:FOER0000) No such group with server: group-id: GROUP_NAME server-id: SERVER_NAME""}}" __label__enhancement improve intro explanation Some of the feedback I've gotten about this module is that it's not totally clear what it's for from the explanation at the top of the readme. Clarifying the purpose of the module will help visitors more easily understand why they might want to use it. Suggestions for intro text / about / features very welcome 😁 cc @bcomnes @laduke "__label__bug MSL (and GLSL Vulkan) from fragment shader fails to compile with several errors The attached SPIR-V fragment shader when run through spirv-cross as follows: ``` ./spirv-cross --output frag_fail.msl frag_fail.spv --msl xcrun --sdk macosx10.13 metal -x metal -std=osx-metal1.2 -Werror -Wno-unused-variable frag_fail.msl ``` Produces the following errors: ``` frag_fail.msl:364:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _690.x = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-2).xy); ~~~ ^ frag_fail.msl:366:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _696.y = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-1, -2).xy); ~~~ ^ frag_fail.msl:368:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _702.z = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(0, -2).xy); ~~~ ^ frag_fail.msl:370:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _708.w = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(1, -2).xy); ~~~ ^ frag_fail.msl:372:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _715.x = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-2, -1).xy); ~~~ ^ frag_fail.msl:374:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _721.y = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-1).xy); ~~~ ^ frag_fail.msl:376:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _727.z = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(0, -1).xy); ~~~ ^ frag_fail.msl:378:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _733.w = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(1, -1).xy); ~~~ ^ frag_fail.msl:380:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _741.x = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-2, 0).xy); ~~~ ^ frag_fail.msl:382:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _747.y = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-1, 0).xy); ~~~ ^ frag_fail.msl:384:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _753.z = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(0).xy); ~~~ ^ frag_fail.msl:386:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _759.w = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(1, 0).xy); ~~~ ^ frag_fail.msl:388:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _767.x = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-2, 1).xy); ~~~ ^ frag_fail.msl:390:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _773.y = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(-1, 1).xy); ~~~ ^ frag_fail.msl:392:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _779.z = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(0, 1).xy); ~~~ ^ frag_fail.msl:394:26: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _785.w = _25.sample_compare(_24, float3(_683, _684).xy, _684, level(0.0), int2(1).xy); ~~~ ^ frag_fail.msl:408:34: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _830.x = _25.sample_compare(_24, float3(_823, _824).xy, _824, level(0.0), int2(-2).xy); ~~~ ^ frag_fail.msl:410:34: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _836.y = _25.sample_compare(_24, float3(_823, _824).xy, _824, level(0.0), int2(-1, -2).xy); ~~~ ^ frag_fail.msl:412:34: error: no member named 'sample_compare' in 'metal::texture2d<float, metal::access::sample, void>' _842.z = _25.sample_compare(_24, float3(_823, _824).xy, _824, level(0.0), int2(0, -2).xy); ~~~ ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated. ``` [frag_fail.zip](https://github.com/KhronosGroup/SPIRV-Cross/files/1704414/frag_fail.zip) " __label__enhancement Support construction of lists and maps https://github.com/opencypher/cypher-for-apache-spark/blob/3afbaabb55d6ec808e7b181f80911e332fef8aa1/src/main/scala/org/opencypher/caps/impl/spark/convert/rowToCypherMap.scala#L44 "__label__bug Console errors when navigating away from Organization Profile When navigating from the Organiation Profile, there is a console error: ```js TypeError: Cannot read property 'apisPerPage' of undefined ``` ![peek 2017-05-03 15-22](https://cloud.githubusercontent.com/assets/17307/25660480/13230b90-3015-11e7-8c9f-3e2cbd411c65.gif) # Steps to reproduce 1. navigate to any Organization Profile 2. click a link to a different route (such as a related API) # Likely cause When creating a new organization, the organization settings are not defined. Hence, `apisPerPage` will not be accessible. Make sure our code is safe where we use the `apisPerPage` property." "__label__enhancement [TW-217] UDA type=numeric constraints _David Patrick says:_ Numbers are numbers, right? of course not. Taskwarriors has the ability to define a UDA data-type as ""numeric"" and this is good, but I think we all saw the coming need to refine that eventually, and I'd like to take a swing at describing how it might work. I think it can be done (from the user-side, _gawd knows_ what it will take from the programming side, but that's not my problem, but I digress..) with rc settings analogous to the string-type ""data values"" setting. In defining the numeric type UDA, a line of values constraints, similar to the string type configuration <pre> uda.rating.type=numeric uda.rating.label=Howmuchfun uda.rating.values=1-5 </pre> Now you can set your Howmuchfun value from 1 - 5, beyond that ""outside of allowable range"" error! This is a sub-type-by-example scenario, where the desired numeric format is indicated by example.. for example uda.cost.values=$-5,000.00-$5,000.00 setting the allowable range, the negative-symbol placement, the decimal place, the thousand separator and the currency symbol by example. Sets of allowable whole-numbers should follow the same handling rules as selecting ranges of ID numbers, like 1,3,5,10-15, and when a numeric range is specified as a whole number (no decimals) it is then constrained as a whole number. Similarly, unless a negative-symbol is used in setting the range, the number is then constrained to positive values. uda.radiation.values=0-180.001 will let you track your exposure by the thousanth. uda.invoice.values=#1000-#2000 as positive whole-numbers, could then be logically incremented (or decremented) and the prepended ""#"" would just be ""display gravy"". uda.progress.values=0%-100% speaks for itself." "__label__enhancement Add Array.reject(function) and Array.reject!(function) methods `Array.reject(func as RooFunction) as Array` Invokes `func` for each element of the array, passing the element to `func` as the first argument. If `func` returns `True` then the element is removed from the array. The removal occurs **at the end** of the iteration of all elements. Essentially the opposite of `Array.keep()`. ```ruby function too_big?(i) return i > 5 ? True : False var a = [2, 4, 6, 8, 10] var b = a.reject(too_big?) print(a) # [2, 4, 6, 8, 10] print(b) # [2, 4] ``` We return the resultant array." "__label__question MemoryError when trying to merge large lists. [+] Merging DictionariesTraceback (most recent call last): File ""dymerge.py"", line 459, in <module> main() File ""dymerge.py"", line 427, in main readFiles() File ""dymerge.py"", line 109, in readFiles lines = myFile.readlines() MemoryError" __label__question 决策树最优特征 想问一下楼主,为什么初始的最优特征赋值为-1?可以赋值为其他值么? "__label__enhancement Distinct should allow use of arbitrary data structures ### Expected behavior It'd be nice to be able to pass arbitrary ways to test distinctiveness to the `Flux.distinct` method. For example, in my project I want to pass a Guava cache to `distinct` to allow time-based eviction of elements when working with an infinite stream of events - but the method signature demands a `Supplier<Collection>`. I got around it with `Collections.newSetFromMap(cache.asMap())`, but not all caches might expose read/write `Map` views (for example, Spring caches do not). One way to resolve this would be to add a method overload with two new parameters: some distinct datastructure store `S` with `Supplier<S>`, and some way to test an element `V` for distinctiveness `BiPredicate<S, V>`. With this, my usecase would look something like: ```java flux.distinct(element -> element.getKey(), () -> getCache(), (cache, element) -> cache.getIfPresent(element) == null)); ``` ### Actual behavior See above. ### Steps to reproduce Not relevant, feature request. ### Reactor Core version 3.1.2.RELEASE ### JVM version (e.g. `java -version`) java version ""1.8.0_152"" Java(TM) SE Runtime Environment (build 1.8.0_152-b16) Java HotSpot(TM) 64-Bit Server VM (build 25.152-b16, mixed mode) ### OS version (e.g. `uname -a`) Darwin [HOSTNAME REMOVED] 16.7.0 Darwin Kernel Version 16.7.0: Mon Nov 13 21:56:25 PST 2017; root:xnu-3789.72.11~1/RELEASE_X86_64 x86_64" __label__enhancement für Lehrer auch letzte Zeile durchsuchen "__label__bug Reconstruct broken in new release (needs to be re-written) In [reconstruct.py](https://github.com/erezsh/lark/blob/master/lark/reconstruct.py) `Terminal` is imported from [common.py](https://github.com/erezsh/lark/blob/master/lark/common.py), but seems not to be defined there." "__label__bug Multimap tries to keep the List/Set on the same node, but ignores Key Hash Tags in the given Key As I described in the title, I am trying to utilize Key Hash Tags to accumulate data on the same ClusterNode. I am using a Multimap and noticed the Key for the Lists/Sets are wrapped in the Key Hash Tags and so they may be placed on another Node. For example: The MultiMap key is ""{multi.map}.some.key"". An entry in it would be saved in the List/Set ""{{multi.map}.some.key}:ADJ..."". So the Hash is not ""multi.map"" but rather ""{multi.map"". For further information see the ""Key Hash Tag"" section on https://redis.io/topics/cluster-spec" "__label__bug Learner cannot Unenroll, Unenroll button is not appearing When a user has completed a course and received a certificate, and attempts to Unenroll from the course the 'Unenroll' button does not display. It looks like the button appears behind the 'Option' tab. url: https://khda.proversity.org Steps: 1. Click on the link above and login 2. If you gave not complete the course, the learner can click on 'Options' and Unenrol from the course 3. Complete the course to achieve your 'Certificate' 4. Click on the Hamburger Menu and click Dashboard. 5. Click on 'Options' to Unenroll Results: The learner cannot unenroll Expected Results The learner should be able to click On 'Option' and Unenroll from the course. " "__label__enhancement Leverage Census Admin Panel menu visibility with CanCan Abilities #Description Currently we are showing a info screen requesting a System Admin to enable the authorization if it is not included in the organization. We can use Abilities to control this, and then, configure the menu item to appear only if this ability is satisfied. See https://github.com/decidim/decidim/blob/e3cf2113f89b9987073263c2fe4ba3aa6351d387/decidim-assemblies/lib/decidim/assemblies/admin_engine.rb for an example of a conditional menu item." "__label__bug Non-real bonds in multimodel PDB structure Hi, after updating to the last version (1.0.0-beta.7), I've realized that the multimodel PDBs have bonds between the different models. It doesn't happen with the 0.10.5-21 version. 1.0.0-beta.7 (note the bonds between C and H of different models): ![screenshot-2](https://user-images.githubusercontent.com/19928100/35042077-663e9248-fb87-11e7-8aea-3f93090c6335.png) code: [http://mmb.irbbarcelona.org/webdev/test/](http://mmb.irbbarcelona.org/webdev/test/) 0.10.5-21 (correct visualization): ![screenshot-1](https://user-images.githubusercontent.com/19928100/35042104-7d232a46-fb87-11e7-818f-a48614520eb7.png) code: [http://mmb.irbbarcelona.org/webdev/test/index2.html](http://mmb.irbbarcelona.org/webdev/test/index2.html) Both codes and PDB files are exactly the same, I've just changed the NGL version. " __label__bug fix 755 permission of changed file "__label__bug bug à cause d'un type code INSEE défini dans un fichier dans la procédure de jointure, lors de l'association des colonnes, bug à cause d'un type Code INSEE cf message dans la console : ``` jQuery.Deferred exception: Cannot read property 'Code INSEE' of undefined TypeError: Cannot read property 'Code INSEE' of undefined at eval (eval at get_columns_html (http://51.15.221.77/assets/project_link_select_columns.js:44:18), <anonymous>:1:10) at get_columns_html (http://51.15.221.77/assets/project_link_select_columns.js:44:18) at HTMLDocument.<anonymous> (http://51.15.221.77/index.php/Project/link/eedeb943bb2683b0cb5c21cbc6b59a43:599:28) at j (http://51.15.221.77/assets/jquery-3.2.1.min.js:2:29999) at k (http://51.15.221.77/assets/jquery-3.2.1.min.js:2:30313) undefined ```" __label__enhancement svg backend A svg backend would be really useful. This would add support for generating schematics using netlistsvg. [0] https://github.com/nturley/netlistsvg [1] https://raw.githubusercontent.com/nturley/netlistsvg/master/lib/analog.svg "__label__enhancement Add ""verify"" command Shortcut: v Basically a decode, without writing anything to disk" "__label__bug Use single function to generate redirect In this function a `location` header must be set, link must be generated and also javascript redirect should be included." "__label__bug Possible Bug 2 Shouldn't this: https://github.com/ml-unito/DeepWordLearning/blob/12c9acb8fcd594f21b5e8e14a6aff5336edb64d6/RepresentationExperiments/collapse_representations.py#L22 be ``` avg_activation = 0 ``` btw, just for the sake of clarity I would set: ``` avg_activation = np.zeros(NUM_FEATURES) ``` just because it makes it clearer that avg_activations will be a vector and does not rely on the fact that the first time ```avg_activation += x[i]``` works on different types than all other times." "__label__question Shariff: PHP Fatal error: Uncaught exception Hi, i am getting this error. I think this is a syntax error in my shariff.json, but i can't find the issue. Or i am wrong? [Mon Oct 16 12:15:43.511049 2017] [:error] [pid 11958] [client 66.249.76.125:43152] PHP Fatal error: Uncaught exception 'Zend\\Config\\Exception\\RuntimeException' with message 'Decoding failed: Syntax error' in /srv/www/seedinit/shariff-backend/vendor/zendframework/zend-config/src/Reader/Json.php:50\nStack trace:\n#0 /srv/www/seedinit/shariff-backend/index.php(21): Zend\\Config\\Reader\\Json->fromFile('shariff.json')\n#1 /srv/www/seedinit/shariff-backend/index.php(26): Application::run()\n#2 {main}\n thrown in /srv/www/seedinit/shariff-backend/vendor/zendframework/zend-config/src/Reader/Json.php on line 50, referer: https://www.seed.uno/blog/articles/1883-building-inclusive-value-chains.html my shariff.json file: `{ ""cache"": { ""ttl"": 60 }, ""domain"": ""www.xxxxxxxxx.com"", ""services"": [ ""GooglePlus"", ""Facebook"", ""LinkedIn"" ], ""Facebook"": [ ""app_id"" => ""1796xxxxxxxxxxxxxxxxxxx"", ""secret"" => ""66448xxxxxxxxxxxxxxxxx"" ] }` The Console in my Chrome Developer Tools says: Failed to load resource: the server responded with a status of 500 (Internal Server Error) https://www.xxxx.com/shariff-backend/?url=https%3A%2F%2Fwww.xxxx.com%2Fnews%2Farticle%2F3205-2017-xxxxxxxxxx.xxxxxx.html Thnx Bavra " "__label__bug fetch_tweets occasionally stalls out. No errors are being logged, but it will stop fetching/parsing tweets randomly, even though the daemon isn't dying. Might be an intermittent network error from twitter that isn't being logged for some reason." __label__enhancement initialize logging at a better point would support a config flag for where to log as well (in future) __label__enhancement Django caching Implement django caching so guindex table is not dynamically created on each request. "__label__bug Bug - Biz_Show - Delete review cannot refresh biz.review_ids will cause review-index-item render failed, fixed in ugly way but update review button cannot change & if the only review has been deleted, cannot render ""No review part'" __label__bug Can't build for iOS using carthage with Xcode 9 I'm using carthage 0.25.0 and trying to build branch release-2.3 from core-plot. I have no problem building for macOS with the command : `carthage update core-plot --platform macOS` However when trying for iOS with the command : `carthage update core-plot --platform iOS` I'm faced with the following error ``` Task failed with exit code 65: /usr/bin/xcrun xcodebuild -workspace /Users/---/Carthage/Checkouts/core-plot/examples/CorePlotExamples.xcworkspace -scheme CorePlot\ iOS -configuration Release -derivedDataPath /Users/---/Library/Caches/org.carthage.CarthageKit/DerivedData/9.0_9A235/core-plot/c0aae0fedf1e9854b437568a6a63476f90bb7ee6 -sdk iphoneos ONLY_ACTIVE_ARCH=NO BITCODE_GENERATION_MODE=bitcode CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES build (launched in /Users/---/Carthage/Checkouts/core-plot) ``` Here is what the log has to report : ``` Build settings from command line: BITCODE_GENERATION_MODE = bitcode CARTHAGE = YES CODE_SIGN_IDENTITY = CODE_SIGNING_REQUIRED = NO ONLY_ACTIVE_ARCH = NO SDKROOT = iphoneos11.0 note: Planning build note: Using build description from disk Build system information error: unexpected duplicate task: CompileDTraceScript /Users/tom/Documents/Inibox/Programme/Inibox Power Plus/Carthage/Checkouts/core-plot/framework/TestResources/CorePlotProbes.d (in target 'CorePlot iOS') Build system information error: unexpected duplicate task: CompileDTraceScript /Users/tom/Documents/Inibox/Programme/Inibox Power Plus/Carthage/Checkouts/core-plot/framework/TestResources/CorePlotProbes.d (in target 'CorePlot iOS') ** BUILD FAILED ** ``` I have also tried using `--no-use-binaries` without success. Hope someone can help Cheers "__label__bug csv parser bug Accidentally broke the parser when I refactored few days ago. will fix. ``` (celeryenv) (master *)[leesw:~/GitHub/reBOOT] $ python manage.py runserver Performing system checks... System check identified no issues (0 silenced). January 31, 2018 - 21:25:09 Django version 1.11.7, using settings 'reboot.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C. Internal Server Error: /upload/poll_state Traceback (most recent call last): File ""/Users/leesw/GitHub/celeryenv/lib/python2.7/site-packages/django/core/handlers/exception.py"", line 41, in inner response = get_response(request) File ""/Users/leesw/GitHub/celeryenv/lib/python2.7/site-packages/django/core/handlers/base.py"", line 187, in _get_response response = self.process_exception_by_middleware(e, request) File ""/Users/leesw/GitHub/celeryenv/lib/python2.7/site-packages/django/core/handlers/base.py"", line 185, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File ""/Users/leesw/GitHub/reBOOT/app/views.py"", line 57, in poll_state json_data = json.dumps(data) File ""/usr/local/Cellar/python/2.7.12_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.py"", line 244, in dumps return _default_encoder.encode(obj) File ""/usr/local/Cellar/python/2.7.12_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/encoder.py"", line 207, in encode chunks = self.iterencode(o, _one_shot=True) File ""/usr/local/Cellar/python/2.7.12_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/encoder.py"", line 270, in iterencode return _iterencode(o, 0) File ""/usr/local/Cellar/python/2.7.12_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/encoder.py"", line 184, in default raise TypeError(repr(o) + "" is not JSON serializable"") TypeError: TypeError(""'_csv.reader' object has no attribute '__getitem__'"",) is not JSON serializable ```" "__label__bug Instalátor generuje relativní cestu k souboru strategie ... což neodpovídá tomu, co instalátor dělá se zbytkem ostatních cest. A znemožňuje robota spouštět z nejrůznějších divných umístění." __label__bug Incorrect state of Save button when an image is opened for the first time __label__bug Incorrect IP for console DNS When using ``` nodes: infra: true ``` the DNS for console is not correct. Relates to 90f52ea696c7698d0f39b3077405c51544cc09a8 "__label__enhancement [TW-800] Color rules for projects should match leftmost, like filters _Paul Beckingham on 2011-02-14T08:29:11Z says:_ Using leftmost matching on project color rules would mean that subprojects would inherit colors from the parent. ch077179 via IRC." "__label__question Attribute Collection Confusion After the first round of extracting 20 attribute values from 81 developers in `Launcher.java`. I found some unexpected results: **Some average attribute values are equal to 0**. I was wondering whether there were some bugs in extracting Java code, because all of the debugging operations appear at least for one time in `CommandEvent`." __label__bug latest test https://test-company1.kayako.com/agent/conversations/12<br>Latest Comment: George: Test Note<br> __label__bug The map is too big The map is too big. Please kindly change the size of frame. __label__bug Reference new JdbcSchema field names Pull latest jdbc-util code and reference new `JdbcSchema` field names. "__label__enhancement ""watch me"" should automatically turn on and off turn on when switching to a channel with no automate_info and no spikes turn off when switching to a channel with automate_info" __label__bug Error When trying to get meal at Sonic Error is in generating buttons - doesn't come through right now as there aren't any button options and need to have at least one. "__label__enhancement startDate should be colored somehow Hi, I'm using this Bulma extension and have seen that startDate is not marked somehow. instead the current date is rounded by a green circle. I think that the startDate should be rounded by a red circle or similar so you know which date is currently selected. This is specially useful when using the calendar in overlay mode as as the field with the current ate is hidden. Is there an option to fix that? regards," "__label__bug [TW-1309] memory error, if misconfigured calendar.details.report _Onion on 2014-04-23T08:19:03Z says:_ When starting the calendar, I wanted to show up 1.) all tasks that are due today, plus 2.) all tasks that are started (no matter when they would be due). so I configured something like task config calendar.details.report next and active ...I thought it would show me both reports. Taskwarrior does not seem to handle this misconfiguration well: I get a memory error from the system, and no error from task warrior." __label__bug [TW-51] ZSH tab-completion with external script does not work _Benjamin Weber says:_ Tab completion on zsh fails with external scripts: http://taskwarrior.org/projects/taskwarrior/wiki/Ht7 <pre>compdef '_task_filter' MYSCRIPT</pre> results in zsh errors (completion with MYSCRIPT does not work): <pre> command not found: compinit command not found: compdef </pre> __label__enhancement (Feature) Choose the marker animation for the store locator __label__question Xpath example? Hello thanks for your hard work. Is there any find by xpath example? I cant find. Also how can I find subtags under a tag? For example there is six td tag under tr tag; I want to select them and read its content. Thanks! "__label__enhancement Output friendly error when get can't talk to watch Before running get, check to make sure watch is running. If it isn't error out immediately with a friendly error. If watch *is* running and a timeout occurs, output a friendly error." "__label__enhancement [TW-1367] edit-annotation _David Patrick on 2014-07-02T01:31:10Z says:_ This is related to the 'task edit' command, The 'task edit' command takes the target task into a vim session, making all attributes editable for editing. The edit-command then validates any changes and applies them to the task. But what if you just want to edit a specific annotation? Access to all the other fields if not just distracting, it's potentially hazardous. The 'task <filter> edit-annotation' command could use the same selection method as 'task <filter> denotate', and could take only the matching annotation into vim for editing, no other distractions. " __label__bug [mvp wk1] debug messy code around reading rec list from redux the workaround I used to get the expected data here feels off; not blocking functionality but it feels like a hack - [x] check if the json is wrong - [x] maybe look at the redux store after the page is rendered to check what data format is https://github.com/cch5ng/seed-to-soul/blob/master/static/src/recipesList/RecipesList.js#L67-L75 __label__enhancement Automatically run checklist checks in background Also allow to exclude particular check from automatic run (and reporting). "__label__bug Broker memory consumption I noticed that the broker daemon is, sometimes, over consuming memory... this after having run for a while ... perharps that getting information about the process cpu and memory will help tracking some memory leaks !" __label__bug Many routes in server v3 app are not protected behind security "__label__question Detect dragging action on mapview? As MapEventReceiver only has two methods - OnSingleTap and OnLongPress, how do i detect dragging in map?" __label__enhancement Update examples to use camelCase The methods are using `camelCase` but most of our examples are still using `snake_case` ## Acceptance Criteria - [ ] The README doesn't have examples using `snake_case` - [ ] The examples folder doesn't have examples using `snake_case` __label__bug latest test https://test-company1.kayako.com/agent/conversations/12<br>Latest Comment: George: Test Note<br> "__label__bug --f and --force bug parsing assigner assign -f /// this short version works well. --force produces a bug that says something like ""orce"" , presumably due to some kind of argument parsing issue." "__label__enhancement should be possible to disable exposing NGINX to the host perhaps something like ""--nginx 0"" (so port = 0) means don't expose NGINX to the host" __label__bug Check courseassets are being deleted correctly There's a leak -- probably linked with changing file. "__label__enhancement Save button Great work, a save button on the gamepad config screen and/or the main screen would be more intuitive, than hiding it on the toolbar" "__label__question Unable to subscribe to any data sets on marketplace Unable to subscribe to any of the data sets listed in the documentation ([link](https://enigmampc.github.io/marketplace/data-sets.html)) Entering this command into terminal: `$ catalyst marketplace subscribe --dataset=Marketcap` Getting this response: ``` Using 0xmyaddress for this transaction. The requested ""marketcap"" dataset is not registered in the Data Marketplace. ``` Environment: * Operating System: Ubuntu 16.04 * Python Version: 3.5.2 * Python Bitness: 64 * How did you install Catalyst: pip" "__label__enhancement TagEx enhancement: ""No text"" construct TagEx needs a construct/node which causes a failure when there is text in the space between the end of the previous node's match and the begin of the next node's match. With syntax like ""Foo / Bar"" the construct ""/"" (or some other character) would cause only matches where a type Foo is followed by a type Bar with no non-whitespace characters intervening." "__label__enhancement Checkbox Checkboxes in the QA should allow just one answer to be valid, and created." "__label__bug [TW-21] do not match a UDA if not followed by colon _Scott Kostyshak says:_ The parser gets excited when it finds the name of a UDA but sometimes the name of a UDA might not be used as a UDA; it might be intended to be part of a description. If the UDA is not followed by a colon, then it is not being (at least correctly) used as a UDA and should not be interpreted as such. <pre> $ task add testing $ task testing rc.uda.testing.type:string [No matches] </pre> I would expect the same output as <pre> $ task description.contains:testing rc.uda.testing.type:string ID Project Pri Due A Age Urgency Description 1 16s 0 testing </pre>`" __label__bug Integration with respect to constants "__label__bug AppVeyor Windows Installer: Does not install into same path as previous installers As discussed in this csound-devel mailing list thread (https://listserv.heanet.ie/cgi-bin/wa?A2=ind1712&L=CSOUND-DEV&P=35913), the Windows installer on AppVeyor has been reported to install into a different location than prior installers. Experimentation shows: 1. If the user has Csound already installed, the installer will install into that path (i.e., C:\Program Files\Csound_x64) 2. If the user does not have Csound installed, the installer will install into a different path: C:\Program files\csound-windows-x64 The latter location was noted as being problematic when used due to programs like CsoundQt and tutorial material for plugin building referring to the original path (C:|Program Files\Csound_x64). " "__label__bug [TW-1741] Warning ""ignoring return value of ‘int ftruncate"" while doing make on xubuntu15.10 _Sunil Joshi on 2015-12-26T15:12:37Z says:_ warning: ignoring return value of ‘int ftruncate(int, __off_t)’, declared with attribute warn_unused_result [-Wunused-result] ftruncate (_h, 0); sjoshi(at)shupkarn:~$ uname -a Linux shupkarn 4.2.0-22-generic #27-Ubuntu SMP Thu Dec 17 22:57:08 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux sjoshi(at)shupkarn:/usr/share/task$ task diag task 2.5.0 Platform: Linux Compiler Version: 5.2.1 20151010 Caps: +stdc +stdc_hosted +LP64 +c8 +i32 +l64 +vp64 +time_t64 Compliance: C++11 Build Features Built: Dec 26 2015 20:05:19 CMake: 3.2.2 libuuid: libuuid + uuid_unparse_lower libgnutls: 3.3.15 Build type: release Configuration File: /home/sjoshi/.taskrc (found), 1469 bytes, mode 100664 Data: /home/sjoshi/.task (found), dir, mode 40755 Locking: Enabled GC: Enabled Server: Trust: strict Certificate: , not readable, 0 bytes Key: , not readable, 0 bytes Ciphers: NORMAL Creds: Hooks Scripts: Enabled (-none-) Tests $TERM: xterm-256color (227x45) Dups: Scanned 0 tasks for duplicate UUIDs: No duplicates found " "__label__bug [9.2.1] [BUG] Unauthorized access to this file When inserting an image (print screen) in the follow up by the technician, the user when trying to open the image receives the following error (Unauthorized access to this file). ![image](https://user-images.githubusercontent.com/17826867/33953700-067db2a6-e01d-11e7-8a36-72e317564011.png) After clicking on the image, you receive the following error ![image](https://user-images.githubusercontent.com/17826867/33953749-3dcc3c78-e01d-11e7-8f72-01e4b93739d6.png) Another question that causes me doubts. An image inserted (print screen) by the User is located in /files/ ... An image inserted (print screen) by the technician is located at: Management> Documents Why they are in different places ------------------------------------------------------------------------------------------------------------------- Information about system installation and configuration [code] GLPI 9.2.1 (/glpi => /var/www/html/glpi) Installation mode: TARBALL Server Operating system: Linux glpi 4.9.0-4-amd64 #1 SMP Debian 4.9.65-3 (2017-12-03) x86_64 PHP 7.0.19-1 apache2handler (Core, PDO, Phar, Reflection, SPL, SimpleXML, Zend OPcache, apache2handler, apc, apcu, bcmath, bz2, calendar, ctype, curl, date, dom, exif, fileinfo, filter, ftp, gd, gettext, hash, iconv, imap, json, ldap, libxml, mbstring, mysqli, mysqlnd, openssl, pcre, pdo_mysql, posix, readline, session, shmop, snmp, soap, sockets, standard, sysvmsg, sysvsem, sysvshm, tokenizer, wddx, xml, xmlreader, xmlrpc, xmlwriter, xsl, zip, zlib) Setup: max_execution_time=""600"" memory_limit=""128M"" post_max_size=""8M"" safe_mode="""" session.save_handler=""files"" upload_max_filesize=""2M"" Software: Apache/2.4.25 (Debian) (Apache/2.4.25 (Debian) Server at www.mysite.com.br Port 80) Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36 Server Software: Debian 9.1 Server Version: 10.1.26-MariaDB-0+deb9u1 Server SQL Mode: Parameters: glpi@localhost/glpi Host info: Localhost via UNIX socket mysqli extension is installed ctype extension is installed fileinfo extension is installed json extension is installed mbstring extension is installed zlib extension is installed curl extension is installed gd extension is installed simplexml extension is installed xml extension is installed ldap extension is installed imap extension is installed Zend OPcache extension is installed APCu extension is installed xmlrpc extension is installed OK/var/www/html/glpi/config : OK OK/var/www/html/glpi/files : OK OK/var/www/html/glpi/files/_dumps : OK OK/var/www/html/glpi/files/_sessions : OK OK/var/www/html/glpi/files/_cron : OK OK/var/www/html/glpi/files/_graphs : OK OK/var/www/html/glpi/files/_lock : OK OK/var/www/html/glpi/files/_plugins : OK OK/var/www/html/glpi/files/_tmp : OK OK/var/www/html/glpi/files/_cache : OK OK/var/www/html/glpi/files/_rss : OK OK/var/www/html/glpi/files/_uploads : OK OK/var/www/html/glpi/files/_pictures : OK OK/var/www/html/glpi/files/_log : OK Web access to files directory is protectedWeb access to files directory is protected : OK Libraries htmLawed version 1.2.4 in (/var/www/html/glpi/lib/htmlawed) phpCas version 1.3.5 in (/var/www/html/glpi/vendor/jasig/phpcas/source) PHPMailer version 5.2.26 in (/var/www/html/glpi/vendor/phpmailer/phpmailer) SimplePie version 1.5.1 in (/var/www/html/glpi/vendor/simplepie/simplepie/library) TCPDF version 6.2.13 in (/var/www/html/glpi/vendor/tecnickcom/tcpdf) michelf/php-markdown in (/var/www/html/glpi/vendor/michelf/php-markdown/Michelf) true/punycode in (/var/www/html/glpi/vendor/true/punycode/src) iacaml/autolink in (/var/www/html/glpi/vendor/iamcal/lib_autolink) sabre/vobject in (/var/www/html/glpi/vendor/sabre/vobject/lib) LDAP directories Server: 'xxx.xxx.xxx.xxx', Port: 'xxx', BaseDN: 'OU=demo,OU=demo,DC=demo,DC=demo', Connection filter: '(&(objectClass=user)(objectCategory=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))', RootDN: 'demo\demo', Use TLS: none Server: 'xxx.xxx.xxx.xxx', Port: 'xxx', BaseDN: 'OU=demo1,OU=demo1,DC=demo1,DC=demo1', Connection filter: '(&(objectClass=user)(objectCategory=person)(!(userAccountControl:1.2.840.113556.1.4.803:=2)))', RootDN: 'demo1\demo1', Use TLS: none SQL replicas Not active Notifications Way of sending emails: SMTP (anonymous@xxx.xxx.xxx.xxx) Mails receivers Plugins list fusioninventory Name: FusionInventory Version: 9.2+1.0 State: Enabled pdf Name: Imprimir em PDF Version: 1.3.0 State: Enabled dashboard Name: Painel Version: 0.8.9 State: Enabled [/code] To copy/paste in your support request " "__label__bug ""clear"" btn in sqonview not working " "__label__question Can I help with testing as an end user of the service? Sorry to open this, but I would like to help in the project, even if initially as a final client of testing deployments, please tell me how I should proceed. Att" "__label__question Accessories plugin Hello, I wanted to ask for product accessories plugin. Is there any chance to get unofficial release of it now, without waiting? " "__label__bug LocaleSetting can't overwrite the browser locale setting LocaleSettings is applied in my Javascript in the way in [this thread](https://community.powerbi.com/t5/Issues/Power-BI-Embedded-localeSetting-is-not-applying-the-setting/idi-p/276077), however it won't overwrite the browser locale setting. Say, if my browser language is in Chinese, the date, currency format shows in Chinese, ignoring the fr/en LocaleSetting in JS. Is this a bug or do you have any further guidance on how to apply the localeSetting correctly? Any demo sample is appreciated. " "__label__enhancement [TW-58] new special-tags +hide and +show _David Patrick says:_ Sometimes less is more. Sometimes the bigger the task list, the less certainty you have about what to do next. These two new special-tags are quick and easy way to _arbitrarily_ filter certain stuff (only you know what) that you could hide from some reports, and not-hide from others. after enabling them in .taskrc, with special-tag.hide = on special-tag.show = on The report default behavior would be to omit any task with a *+hide* tag, although *filter:tag.word:hide* could be added to any report (with mended syntax), and *.rc special-tag.hide=off* (or it's alias) could be used at the command-line. To keep this feature from becoming a liability, and to reduce the risk that important (but hidden) tasks will be overlooked or forgotten, warning messages should be displayed after any report that is hiding tasks. 144 tasks (11 hidden) *+show* is here for symmetry, and works in an opposite way than *hide*. It is NOT required to reverse the behavior of a +hide tag. A task with a *+show* tag is in almost every report, _always shown_ even if it would otherwise escape a query, or the be excluded by a filter. Again, the feature could turned on in the .rc, over-ridden in specific report descriptions, and/or specified at the CLI." "__label__bug Queue page contents reloads whenever someone new joins the queue It's hard to notice in small, local test environments but once there are 10+ people in the queue (and more in other queues) this gets quite annoying. I'm not sure what would be causing it - perhaps either something with web notifications or the update to Meteor 1.6?" "__label__enhancement Papercuts (v3) - minor usability bugs A meta issue to track easily fixable usability bugs, or [papercuts](https://en.wikipedia.org/wiki/Paper_cut_bug). Please add in comments below. - [x] Add widget alignment in graph editor - [x] Add scroll wheel support to graph editor - [x] Improve version display in About and Start Page (build date vs version number) - [x] Make it clearer that versions on Start Page are notifications of releases, _not the running version_. - [ ] Write version number into project file and check on build. - [ ] Check mismatched versions in distributed hubs. - [x] Add better keyboard control to graph editor " __label__enhancement Add file storage service to save aid images "__label__enhancement ""statistics"" command for getting useful data about your documentation * [ ] Commonly used: * [ ] Parameter names * [ ] Representation dataset identifiers * [ ] Words * [ ] Content types * [ ] HTTP codes * [ ] Less common (may help detecting typos): * [ ] Parameter names * [ ] Representation dataset identifiers * [ ] Words * [ ] Content types * [ ] HTTP codes * [ ] What representation datapoints that are missing sample data. * [ ] What resource action parameters that are missing sample data." "__label__bug Bug found in ff9629d (2018-01-11) with cpuload fault Test(s) failed under the following scenario(s): servers_count vs client_count: 3 : 3 corfu_mode: Disk, client_app: LoadGenerator test_count vs fail_count: 15 : 15 failed_id_list: ['601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a', '601fc70f7b965dea5f590351c7b4fb01a4adf2792cf07907889044e5c2892e4a'] " __label__enhancement end cursor timer when window is in the background reduce power usage __label__enhancement Debounce HQ status changes received by mqqt Debounce status changes resulting in irc channel topic changes. "__label__bug Event read / update fails with AttributeError (and error 500) Steps to reproduce: Create an event, filling in just the mandatory values (name, country) is enough. Expected behavior: Event is created and can be read / updated. Actual behavior: Event is created but read / update operation fails with ``` Traceback (most recent call last): File ""/srv/web2py/gluon/restricted.py"", line 219, in restricted exec(ccode, environment) File ""/srv/web2py/applications/eden/controllers/event.py"", line 498, in <module> File ""/srv/web2py/gluon/globals.py"", line 419, in <lambda> self._caller = lambda f: f() File ""/srv/web2py/applications/eden/controllers/event.py"", line 89, in event return s3_rest_controller(rheader = s3db.event_rheader) File ""/srv/web2py/applications/eden/models/00_utils.py"", line 243, in s3_rest_controller output = r(**attr) File ""applications/eden/modules/s3/s3rest.py"", line 691, in __call__ output = self.resource.crud(self, **attr) File ""applications/eden/modules/s3/s3rest.py"", line 1791, in __call__ self._extend_view(output, r, **attr) File ""applications/eden/modules/s3/s3rest.py"", line 2029, in _extend_view display = handler(r) File ""applications/eden/modules/s3db/event.py"", line 5635, in event_rheader TR(TH(""%s: "" % table.location_id.label), AttributeError: 'Table' object has no attribute 'location_id' ```" "__label__enhancement LinkedSource with Array typed target, message should be clearer It seems LinkIt doesn't support Array typed target. **LinkedSource**: ``` cs public Class MyLinkedSource : ILinkedSource<MyModel> { public MyModel Model { get; set; } public SomeData[] SomeDatas { get; set; } } ``` **Model**: ``` cs public class MyModel { public int Id { get; set; } public int[] SomeDataIds { get; set; } } ``` **ReferencerLoader**: ``` cs ... return new ReferenceLoader( new SomeReferenceLoader<SomeData, int>(ids) => new SomeDataRepository().GetByIds(ids), referencedObject => referencedObject.Id ); ... ``` **Using it**: ``` cs ... var actual = _loadLinkProtocol.LoadLink<MyLinkedSource>().ById(id); // exception: There is no loader for reference of type SomeData[]. ... ``` Changing the target type for a List<T>() works. Perharps make the message clearer about not using arrays? Thanks! " __label__enhancement Add flex-padding-* classes for padding all child elements using flex-* classes Add the following classes: .flex-padding-xs .flex-padding-sm .flex-padding-md .flex-padding-lg .flex-padding-xl "__label__bug Quality Edits Page bug 1. On the Quality Edits page, I checked the ""verify edits"" checkbox 1. I pressed the ""Review Macro Edits"" button 1. On the resulting page, the URL bar, nav bar, and yellow info box all correctly refer to Macro edits, but the content of the page is all Quality edits. <img width=""1126"" alt=""screen shot 2018-02-01 at 3 11 47 pm"" src=""https://user-images.githubusercontent.com/4295388/35701135-13126ec2-0763-11e8-8c96-4e03833bef27.png""> And at the bottom of the page, there is no button to continue to the next page <img width=""547"" alt=""screen shot 2018-02-01 at 3 18 57 pm"" src=""https://user-images.githubusercontent.com/4295388/35701217-4b984db6-0763-11e8-9258-318d934ba855.png""> " __label__enhancement Filesystem sandboxing `fs` module should be wrapped and sandboxed inside application directory "__label__enhancement [TW-1327] Display 'No tasks' instead of 'No matches' if tasks has zero tasks _Benjamin Weber on 2014-05-21T17:27:37Z says:_ If task has no tasks, it will show: ``` No matches. ``` For this very condition it could display: ``` No tasks. ``` Optionally, it could point to the tutorial (online or offline) as this condition is the starting point of a new user. Maybe just a minor detail which could channel the new users directly to the tutorial." __label__bug Goes into a tight loop and consumes 100% of CPU if keyboard is unplugged. "__label__bug Crash in FetchAdvertisingInfoTask#doInBackground If exeception catched in [FetchAdvertisingInfoTask#doInBackground](https://github.com/OpenLocate/openlocate-android/blob/52984c8c641af5cf6f4c3302a14605d25f07b95b/openlocate/src/main/java/com/openlocate/android/core/FetchAdvertisingInfoTask.java#L55), OpenLocate will log it: `Log.e(TAG, var3.getMessage());` But var3.getMessage may be null. ![image](https://user-images.githubusercontent.com/12523498/35840360-bd24a7ba-0b30-11e8-9a30-ead7dcfd5535.png) " __label__enhancement Generic icon if one isn't set "__label__question Should we use the revealing module pattern? I have noticed that the way that `mbox` is written everyone has access to its private api. That means that anyone can type `mbox.open()` pass whatever it wants as parameters and get unexpected results. So I was thinking about using the revealing module pattern so we could expose only the core methods(alert,confirm,prompt) and some helper methods that will help us change the mbox global configuration. What do you say?" __label__enhancement Need to decide on dual or single heater cartridge Need cad review and decision __label__enhancement Support for below ES6 Thanks for starting this project! I tried this out today and had some trouble using `uglify` as the code is in ES6. Any chance we could add a build step to use `babel` or something similar to transform the code to ES5? __label__enhancement Set up minimal Travis CI test This is only supposed to automate the deployment of a/the development branch. "__label__bug Can't run 'Filter' operation Everytime I try to use the Filter operation (data transformation), I get this error. ![image](https://user-images.githubusercontent.com/15324745/35808905-8bbe82bc-0a6e-11e8-81fc-5e1054f9407e.png) " __label__enhancement Add ping method to cabinet. "__label__bug BUG: findGlobals(a <- pkg::a, ...) thinks a is a globals `findGlobals()` does not distinguish between `a` and `pkg::a` below and therefore thinks `a` is a global variable in the same way it is in `a <- a` (in the new globals 0.11.0): ```r > globals::findGlobals(b <- pkg::a, substitute = TRUE) [1] ""<-"" ""::"" > globals::findGlobals(a <- pkg::a, substitute = TRUE) [1] ""<-"" ""a"" ""::"" > globals::findGlobals(a <- a, substitute = TRUE) [1] ""<-"" ""a"" ``` " "__label__bug move config to top-level The configuration is to be moved to top-level so that it becomes easy to specify. Having one global config file would also make it easy to run analysis on multiple communities. With the present setup, running analysis on different communities like slackware and ubuntu is proving troublesome. Some of the python files are using config module like community and user, These files are also common for ubuntu and slack since they don't require parsing changes but when doing a slack analysis these should use the config in slack which is currently not specified. I think we should do this before completely moving to config dictionary object." "__label__enhancement Better persistent mode I notice `treemacs` doesn't save `visible` in `desktop-mode`. Every time I use `treemacs-toggle` to open and make it invisible, then restart Emacs, the `treemacs` buffer is visible again. Is it the proper behavior? " __label__enhancement Perform code checking __label__enhancement Update language drop down on Advanced Search to dynamically show all available languages Lang list is hard coded because of erroneous lang codes in ALTO OCR. __label__bug Make Letter Bigger In Favicon "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/UKby4T_XBo2iAhY2_147naSKYTtbTQ9TU3jGlCA_i6SrAvQe4VdU6rWsfYVRhEvp0/M4_-KAQZXUSMkzkrAEIKN-LLLLShz__l4T6cXRPMZphLqrpnktUM9AXGZ75WA8EY0/S0RTr7HpaOnceFgrg6fwUVd_rs_2h-pkPMQnRuXruZA1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug Use joda for handling Date/Times Fix up the usage of Dates within the app to use joda and remove hacky timezone specific code From [joda-time-android](https://github.com/dlew/joda-time-android), add dependency using gradle ```gradle dependencies { compile 'net.danlew:android.joda:2.9.9' } ```" "__label__question How to use only 50% of tokens in crowdsale? ## 👁‍🗨 Description I want to create a crowdsale which sells 50% of the coins and allocates the rest to my wallet. what is the best way of doing this? Is it best to create the token first? I've attempted to launch multiple crowdsales on the Rinkeby test network using Remix, none of them accepting ether or returning any coins. Perhaps its better for me to use a service that makes the coin/crowdsale for me? I have followed countless tutorials, I'm not the smartest guy, I'm quite lost, please put me in the right direction, thanks. ## 👽 Environment - Rinkeby Test Net - Remix - pragma solidity ^0.4.18; - 0.4.19+commit.c4cbbb05.Emscripten.clang ## 📝 Details I want to create 10billion tokens so do I need to create the first 5billion tokens and then mint the next 5billion? In the most recent tutorial I followed, the programmer used an API interface function for interacting with the Token contract, I thought this would call the pre-minted tokens, I must be missing some details to do with token allocation. (he explains it in the video at 5:00) This following tutorial seemed to be the most useful, the crowdsale code deployed but the token contract addresss would not accept or return anything. Tutorial: https://www.youtube.com/watch?v=VfZ4H3KUMNg&ab_channel=WildCrypto I have pasted my crowdsale code followed by my token code below, I really appreciate it if you read this far. Thank you. ## 🔢 Crowdsale Code (Last attempt) ``` In Question: /** * @title Token * @dev API interface for interacting with the Token contract */ interface Token { function transfer(address _to, uint256 _value) returns (bool); function balanceOf(address _owner) constant returns (uint256 balance); } contract Crowdsale is Ownable { using SafeMath for uint256; Token public token; uint256 public constant RATE = 100000; // Number of tokens per Ether uint256 public constant CAP = 50000; // Cap in Ether uint256 public constant START = 1517932200; // Feb 6, 2018 @ 15:50 UTC uint256 public constant DAYS = 30; // 30 Days uint256 public constant initialTokens = 10000000000 * 10**5; // Initial number of tokens available bool public initialized = false; uint256 public raisedAmount = 0; event BoughtTokens(address indexed to, uint256 value); modifier whenSaleIsActive() { // Check if sale is active assert(isActive()); _; } function Crowdsale(address _tokenAddr) { require(_tokenAddr != 0xa1B9573a39D04F63A44831AaaBE40ff5326305a6); token = Token(_tokenAddr); } function initialize() onlyOwner { require(initialized == false); // Can only be initialized once require(tokensAvailable() == initialTokens); // Must have some tokens allocated initialized = true; ``` pragma solidity ^0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of ""user permissions"". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title Token * @dev API interface for interacting with the Token contract */ interface Token { function transfer(address _to, uint256 _value) returns (bool); function balanceOf(address _owner) constant returns (uint256 balance); } contract Crowdsale is Ownable { using SafeMath for uint256; Token public token; uint256 public constant RATE = 100000; // Number of tokens per Ether uint256 public constant CAP = 50000; // Cap in Ether uint256 public constant START = 1517932200; // Feb 6, 2018 @ 15:50 UTC uint256 public constant DAYS = 30; // 30 Days uint256 public constant initialTokens = 10000000000 * 10**5; // Initial number of tokens available bool public initialized = false; uint256 public raisedAmount = 0; event BoughtTokens(address indexed to, uint256 value); modifier whenSaleIsActive() { // Check if sale is active assert(isActive()); _; } function Crowdsale(address _tokenAddr) { require(_tokenAddr != 0xa1B9573a39D04F63A44831AaaBE40ff5326305a6); token = Token(_tokenAddr); } function initialize() onlyOwner { require(initialized == false); // Can only be initialized once require(tokensAvailable() == initialTokens); // Must have some tokens allocated initialized = true; } function isActive() constant returns (bool) { return ( initialized == true && now >= START && // Must be after the START date now <= START.add(DAYS * 1 days) && // Must be before the end date goalReached() == false // Goal must not already be reached ); } function goalReached() constant returns (bool) { return (raisedAmount >= CAP * 1 ether); } function () payable { buyTokens(); } /** * @dev function that sells available tokens */ function buyTokens() payable whenSaleIsActive { // Calculate tokens to sell uint256 weiAmount = msg.value; uint256 tokens = weiAmount.mul(RATE); BoughtTokens(msg.sender, tokens); // Increment raised amount raisedAmount = raisedAmount.add(msg.value); // Send tokens to buyer token.transfer(msg.sender, tokens); // Send money to owner owner.transfer(msg.value); } /** * @dev returns the number of tokens allocated to this contract */ function tokensAvailable() constant returns (uint256) { return token.balanceOf(this); } /** * @notice Terminate contract and refund to owner */ function destroy() onlyOwner { // Transfer tokens back to owner uint256 balance = token.balanceOf(this); assert(balance > 0); token.transfer(owner, balance); // There should be no ether in the contract but just in case selfdestruct(owner); } } ## 🔢 My Token Code ``` In Question: contract Test is StandardToken { string public constant name = ""Test""; // solium-disable-line uppercase string public constant symbol = ""TEST""; // solium-disable-line uppercase uint8 public constant decimals = 5; // solium-disable-line uppercase uint256 public constant INITIAL_SUPPLY = 10000000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ function Test() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; Transfer(0x0, msg.sender, INITIAL_SUPPLY); } } ``` pragma solidity ^0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Test * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `StandardToken` functions. */ contract Test is StandardToken { string public constant name = ""Test""; // solium-disable-line uppercase string public constant symbol = ""TEST""; // solium-disable-line uppercase uint8 public constant decimals = 5; // solium-disable-line uppercase uint256 public constant INITIAL_SUPPLY = 10000000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ function Test() public { totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; Transfer(0x0, msg.sender, INITIAL_SUPPLY); } } <!-- If your code is larger, consider linking us to a repo illustrating your issue. --> <!-- List any other information that is relevant to your issue. Error logs, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc. --> " __label__enhancement Proper self-signed security token We need a better workflow for deploying click-once and not clobbering each other's work. __label__question 关于RIME目前进展情况的一些询问 一直在用RIME/小狼毫输入法,非常喜欢。最近在修一门关于自由和开源软件的课程,借此机会进一步探索了一下RIME在GitHub这里的进展。有两个关于项目的问题想要询问: 1. 小狼毫/Weasel是否不再更新?gits前端的RIME是否会在近期发布? 我看到Weasel在GitHub这里直到最近还有commit,不过[更新日志](http://rime.im/release/weasel/)中最后的release版本一直停留在0.9.30 <2014-04-01>。在其他issue里和贴吧那边都看到有人说小狼毫已经停止维护,并且在 #25 中看到 @lotem 放出了rime-gits的测试版本。 所以我想确认一下rime-gits是不是已经经过测试确定为下一个发布的Windows用RIME?是打算沿用当前Weasel 0.9.30的版本系列,还是另起名字作为新系列发布?如果打算终止Weasel 0.9.30的话,是不是可以修改一下README文档做出说明并最后发布一次呢?(顺便处理[Pull Request 44](https://github.com/rime/weasel/pull/44)提到的联系方式失效的问题。) 2. RIME输入方案的主要交流/分享渠道是什么? 佛振在[参考书/东风破](https://github.com/rime/home/wiki/RimeWithSchemata#%E6%9D%B1%E9%A2%A8%E7%A0%B4)中写道: > 構想在 Rime 輸入軟件完善後,能夠連結漢字字形、音韻、輸入法愛好者的共同興趣,形成穩定的使用者社羣,搭建一個分享知識的平臺。 而这其实也是我选择这款输入法的原因之一:个性化地订制自己需要的输入法是使用RIME的第一步,而分享并帮助其他人找到适合的输入法才更有意义。 然而目前我还没太明白应该在哪里和别人交流自己编写的RIME输入方案?在贴吧看到不少这类的交流帖,但个人感觉贴吧的环境既不方便分享链接/代码,也不方便分类和检索,不太适合来做这件事。而在GitHub这里建立brise的分支进行编写的形式不知是不是只有佛振和各位编写当前预设方案的前辈在维护时才会用到? 以上就是我的两点问题,希望能得到回复。最后感谢佛振和各位参与项目的前辈为不断改进RIME做出的贡献! __label__enhancement Logo decathlon https://www.google.fr/search?q=logo+decathlon&client=ms-unknown&prmd=isnv&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi_s5jtqfvYAhWCxRQKHaDzBUsQ_AUICSgB&biw=412&bih=652&dpr=2.63#imgrc=kr2udeAhg4debM: "__label__enhancement Textile support? Hi, do you plan to add Textile support? http://en.wikipedia.org/wiki/Textile_(markup_language) It's a ""standard"" in the ruby world. Eg. http://www.redmine.org Greez Jens " __label__bug Fix the additional notes box The notes box needs to be resized. It should also be tested with a virtual keyboard. The flavor text should automatically go away when typing. "__label__enhancement Automatically start multibranch builds only for branch ""master"" Multibranch builds should be started automatically only for branch `master`, not for topic branches. However, the Jenkins jobs should still be created for the topic branches, just not started automatically. This requires a change in the `Jenkinsfile`." "__label__bug tsc says types are not exported but they are `tsconfig.json` ``` { ""compilerOptions"": { ""strict"": true, ""noImplicitReturns"": true, ""target"": ""es2015"", ""module"": ""commonjs"", ""outDir"": ""./build"" }, ""include"": [""./repro.ts""], ""exclude"": [""./source/**/*""] } ``` Working: ``` $ /Users/jason.kuhrt/projects/ssense/experiment/node_modules/.bin/tsc --project ./tsconfig.json --declaration --outDir build ✨ Done in 1.98s. ``` ```ts export interface Bar { a: boolean } export interface Foo { bar: Bar } const f = (x: any): Foo => { return { bar: { a: false } } } export { f } ``` Not working: ``` $ /Users/jason.kuhrt/projects/ssense/experiment/node_modules/.bin/tsc --project ./tsconfig.json --declaration --outDir build repro.ts(9,7): error TS4025: Exported variable 'f' has or is using private name 'Foo'. ``` ```ts interface Bar { a: boolean } interface Foo { bar: Bar } const f = (x: any): Foo => { return { bar: { a: false } } } export { f, Bar, Foo } ``` I Don't see mention of support for `export { A, B, C }` style in https://www.typescriptlang.org/docs/handbook/modules.html but nor do I see it mentioning lack of support. So I assume there is support? Maybe I missed something." "__label__enhancement Support for StartAsService or an alternative method How can I use the old Sample Projects as a Windows Service? I have an old UA application using net46 and Native x86 dll that I would like to migrate to NetStandard and execute as a Windows Service (doing the less possible effort..). It's derived from the old Reference Server, but now I see that 350.6 doesn't support ProccessArguments() and StartAsService(). I've seen that it exist in ApplicationInstance on ""master"", but it is not implemented yet." "__label__bug [libxi] Unable to install ``` $ crew install libxi libxi: X.org libXi Client library for XInput https://x.org version 1.7.9 No precompiled binary available for your platform, downloading source... Archive downloaded Unpacking archive, this may take awhile... gcc (GCC) 4.9.4 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Building from source, this may take a while... autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal configure.ac:16: error: must install xorg-macros 1.12 or later before running autoconf/autogen configure.ac:16: the top level autom4te: /usr/local/bin/m4 failed with exit status: 1 aclocal: error: echo failed with exit status: 1 autoreconf: aclocal failed with exit status: 1 libxi failed to install: `./autogen.sh` exited with 1 ```" "__label__bug ""Discard all changes"" not working I'm using version 1.0.13 in macOS. I have two changed files. When I right-click the ""2 changed files"" header on the left and choose ""Discard all changes"", nothing happens. Opening the inspector, I see a couple new JS errors appear when I try to discard changes: - ""`git submodule status --` exited with an unexpected code: 128."" from install.ts:23 - ""Uncaught (in promise) l: fatal: no submodule mapping found in .gitmodules for path"" from core.ts:73" __label__enhancement DOI detail page long url DOI detail view should be accessible using DOI ID as well as full DOI identifier: * http://geokogud.info/doi/18 * http://geokogud.info/doi/10.15152/GEO.18 The second option is more important as this address is registered in international DOI database and used to make the universal link operational: http://doi.org/10.15152/GEO.18 __label__enhancement Stop playback with mouse wheel Playback can be stopped by any button or key. But not by mouse wheel. __label__bug Hover propagation is invalid The hover responsability is left to GuiNode itself and does not take into account parent pane overflow restriction. This invalid behavior can be observed in ScrollPane where nodes still receive hover event when out of view. __label__bug 1.3.2 breaks Android taps on feature icons It seems like the latest beta updates are breaking the ability to click on icons on Android. Many users report that they are not able to open the popup dialogs correctly since the last update which include 1.3.2-beta2 on Android (they appear after a double tap on a feature). I notice the same problem in the debugger that the click is often not registered correctly. It works on iOS pretty well with 1.3.2-beta2 but Android seems to be broken with it. "__label__bug [TW-1847] task calc gives wrong time after seemingly random boundary _Scott Mcdermott on 2016-08-28T06:26:26Z says:_ I use difference between times a lot to figure out how much time I spent on something by giving (end - start) time. It has always had weird behavior I don't understand, and changes with different versions. Today I found another one, and decided to write a bug: ``` $ task calc 23:38 - 18:47 PT-19H-9M ``` ok that is clearly wrong. It's right, until it's wrong: ``` $ task calc 23:07 - 22:00 PT1H7M $ task calc 23:08 - 22:00 PT1H8M $ task calc 23:09 - 22:00 PT-22H-51M ``` what's special about this time? The boundary seems arbitrary, 69 minutes? Why doesn't it just give the difference? Since it is bad math, I filed as major bug. If the start is larger than the end for a subtraction, it should always be a positive number, the difference between the two, I should think." __label__bug [TW-685] task 2.0.0 accepts uuid but not a list of uuids _Bryce Harrington on 2012-01-16T01:08:24Z says:_ $ task rc.confirmation=off c5a40e87-8328-4581-b522-e7571ab96e02 63b9a01e-7ae4-e832-6222-421a543bdd03 d601dc8c-d90d-d7c0-67d6-52549389e09b modify wait:1d Configuration override rc.confirmation:off No tasks specified. humber:~/src/task/task-2.0.0.beta4$ task rc.confirmation=off c5a40e87-8328-4581-b522-e7571ab96e02 modify wait:1d Modifying task 162 'xxxxxx'. Modified 1 task. Configuration override rc.confirmation:off The project 'work' has changed. Project 'work' is 85% complete (34 of 241 tasks remaining). Also tried comma-separated uuids without luck. Comma-separated ids (not uuids) works and permits the change (as in task 1.9.4). __label__enhancement DFS functions should be moved to a standalone class ![image](https://user-images.githubusercontent.com/8213501/35501364-a0832360-0514-11e8-9b00-a2ed58757f8e.png) DFS is not only used to upload and download image. It can manipulate any kind of file. You should write another util class named `DFSUtil` or `FileUtil` and move file-related operations into the class. "__label__bug Error while updating password of a mailbox using PostgreSQL as a backend database Context: I have a mailbox of type jacques.deguest@example.com created, existing and set with some password. I went to PostfixAdmin interface, edited the mailbox and changed the password: https://www.example.com/postfixadmin/edit-mailbox.php?username=jacques.deguest%40example.com&domain=example.com This produced the following web error: ``` DEBUG INFORMATION: Invalid query: ERROR: column ""t"" does not exist LINE 1: UPDATE alias SET active=t WHERE address='jacques.deguest@ang... ^ Please check the documentation and website for more information. Postfix Admin Forums ``` In file `edit-mailbox.php` at line 165 there is the sql query: `UPDATE $table_alias SET active=$sqlActive WHERE address='$fUsername' AND domain='$fDomain'` This produce the following query in the PostgreSQL: `UPDATE alias SET active=t WHERE address='jacques.deguest@example.com' AND domain='example.com'` This sql query is slightly wrong. The variable $sqlActive should be surrounded by single quotes: `UPDATE $table_alias SET active='$sqlActive' WHERE address='$fUsername' AND domain='$fDomain'` This now becomes: `UPDATE alias SET active='t' WHERE address='jacques.deguest@example.com' AND domain='example.com'`, which works. And with MySQL if one uses 0 or 1, this would work as well. " "__label__enhancement Allow user to add custom reports Through `customTestReports` and `customSummaryReports`, you can add or replace some of the reports SeleniumRobot generates Option is a comma seperated list of `<prefix>::<extension>::<template_file located in resources>`. Template file has the Velocity format and must be located in any of the resources seleniumRobot can access (those from test application or from core) We use PerformanceReporter and JSonReporter as a base" "__label__bug mesh.from_lines boundary face does not get deleted Strange behaviour (occurred on larger input geometries). Sometimes the boundary face does not get deleted with delete_boundary_face=True. However, another face get deleted instead. if delete_boundary_face: mesh.delete_face(0) It seems the the boundary face is not always indexed 0." __label__bug toCommaString break Datetime comparator Hi The toCommaString present into this file : 'angular-odata-es5/src/angularODataOperation.ts' seems to broke the Datetime comparator. For example: `SignatoryID eq ${this.signatory.ID} and EndDate lt ${new Date().toISOString()}` Format -> `SignatoryID eq 14 and EndDate ge 2018-02-07T09:58:30.897Z` toCommaString -> `SignatoryID eq 14 and EndDate ge 2018-02-07T09:58:30/897Z` The dot is replaced by a slash.. "__label__enhancement Join Entries ""Street"" and ""House number"" to street address In most applications these 2 fields are joined in a ""street address"" field. It would be more convenient to also use this format. For example otrs doesn't display the housing number, since it expects this to be in the street address field. See [this format guide](http://www.bitboost.com/ref/international-address-formats/germany/) as a reference" "__label__bug [TW-648] Deleting multiple recurring tasks problem _Urs Schuerch on 2011-10-10T10:33:31Z says:_ <pre> task> list Geburtstag ID Project Pri Due Active Age Description 56 L 14.10.2011 4 days Geburtstag f 63 L 17.10.2011 4 days Geburtstag a 2 tasks task> delete 56,63 Permanently delete task 56 'Geburtstag f'? (y/n) y This is a recurring task. Do you want to delete all pending recurrences of this same task? (y/n) y Permanently delete task 63 'Geburtstag a'? (y/n) y This is a recurring task. Do you want to delete all pending recurrences of this same task? (y/n) y Deleting recurring task 54 'Geburtstag f'. Deleting recurring task 56 'Geburtstag f'. Deleting recurring task 55 'Geburtstag e'. Deleting recurring task 57 'Geburtstag d'. Deleting recurring task 61 'Geburtstag c'. Deleting recurring task 62 'Geburtstag b'. Deleting recurring task 63 'Geburtstag a'. </pre> As per a discussion I had on irc with some other tw users I decided to remove birthdays and similar events from task until the special tag 'events' is implemented. I selected the two visible birtdays, i.e. their task id to remove them. taskwarrior went on and removed even waiting tasks. That looked suspicious to me. Version: 1.9.4" "__label__enhancement CineForm export?! Has anybody experience in using CineForm encoder? As written on ml forum, it is open source now. https://gopro.github.io/cineform-sdk/ It is better than ffmpeg in terms of using ProRes 422 and 444 (they write 12bit)? Have you seen a code example how to use it?" __label__bug Oscilloscope stop acquisition Oscilloscope stop acquisition when signal generator is running and the time base is higher than 5 ms. To detect this connect Signal Generator channel 1 or 2 output on Oscilloscope channel 1 or 2 input. ![image](https://user-images.githubusercontent.com/13637543/28467848-e2b0e974-6e39-11e7-9bc4-d67b7b663e50.png) ![image](https://user-images.githubusercontent.com/13637543/28467904-0c878258-6e3a-11e7-86ec-3513cae455ff.png) ![image](https://user-images.githubusercontent.com/13637543/28467916-1331e6b6-6e3a-11e7-88b1-b4c35e6bb8be.png) "__label__bug 0-ary parallel definition is not accepted ``` let x = y and y = {a} in x %=> {a} ``` ``` let f = g and g x = x + 1 in f 2 %=> 3 ``` Though previous version accepted these kinds of code, current version does not (`Assert_failure` exception occurs during the evaluation because of the absence of a variable in the environment). Probably I broke this system while attempting to adopt it to the module system. " "__label__enhancement Options argument from mathjax-node API is missing in typeset callback It should be `callback(result, options)`, but mathjax-node-svg2png uses `callback(result)`. For one thing, `options.state` becomes inaccessible." "__label__bug 255,255,255 getting converted to 0,255,0 with 7.3.0 Hi, i recently upgraded via NuGet to 7.3.0. I often upgrade to the latest version every time i put out a new release. Without changing any code something very weird an un-expected happens. I downgraded back to 7.2.1 and confirmed the problem went away. If you look at the following code fragment i've attached step0.jpg and step1.jpg, using 7.3.0 it makes all of the ""blow highlights"" of the following image turn from pure white to pure green. Using 7.2.1 they stay pure white. ![step0](https://user-images.githubusercontent.com/6952817/35750730-f82ebc52-0823-11e8-946c-eb09189d77af.jpg) ![step1](https://user-images.githubusercontent.com/6952817/35750731-f83c2b08-0823-11e8-825f-02b1913e56ab.jpg) using (MagickImage image = new MagickImage(incomingStream)) { image.Write(@""c:\step0.jpg""); ColorProfile imageICC = image.GetColorProfile(); if (imageICC != null && imageICC != ColorProfile.AdobeRGB1998) image.TransformColorSpace(imageICC, ColorProfile.AdobeRGB1998); image.Write(@""c:\step1.jpg""); " __label__enhancement Pull the metadata settings into contrib module To keep this plugin lightweight the MetadataSettings model should be pulled out to a separate module so it's not mandatory. Users can then choose if they would like to include it or not. "__label__bug Mekanism Tools Crash when using a Anvil to apply Silk Touch ### ---Issue Report--- **Have you checked Open/Closed Issues (if applicable & PLEASE CHECK BEFORE POSTING):** [Yes or No] Yes ### Description of Issue [Description of the issue] While trying to enchant an Osmium Pickaxe with silk touch book, game crashes. ### Steps to Reproduce Issue 1. [First step] Make Osmium Pickaxe 2. [Second step] Place in an anvil with enchanted book **Crash log/Log (if applicable):** [PASTEBIN. Do NOT copy and paste the log into the issue post itself.] > *How do i locate a crash log on Minecraft on Curse/Twitch? see* https://gyazo.com/3c616a7dfcbe69033ea210805b093f82 https://pastebin.com/f4TVY3py **Screenshots (if applicable):** **Version of Mod Pack using:** [VERSION] v1.2.5 **Where did this bug happen:** [Single Player or Server] Single ### Additional Information [Any other information that may be able to help me with the problem] " "__label__enhancement [TW-1851] include zipfiles.tar.gz _David Patrick on 2016-09-10T04:30:59Z says:_ A tar/zipfile can, and usually does contain multiple files. It's not uncommon for programs to use zipfiles transparently, just ""seeing"" them as multiple files, presuming the file-format was supported (.zip .tar.gz etc) If taskwarriors ""include"" rc directive could include zipfiles, then groups of configuration files (credentials, reports etc) could be easily bundled and maintained as a single entity. " "__label__bug Removing new item removes the wrong item To repro: Given an existing list of config items, add a new item that would alphabetically fall near the middle of the grid, and then immediately (without refreshing the screen) attempt to remove it. The wrong item will be removed. I suspect that it's actually removing the item that was in the ordinal position of the newly added item." __label__bug Hyglas lies dead in Gelato instead of being ported to TOT "__label__enhancement Develop dual-Propeller ""render"" routine https://github.com/cspang1/JCAP/projects/1#card-6846453" "__label__bug KendoGrid row selection bug when selecting the same row multiple times ## I'm submitting a... * Bug report ## Current behavior Kendo Grid -> Selection enabled -> An exception when clicking over a row for three times, and the grid doesn't respond to new selections. Exception: ` Uncaught TypeError: Cannot read property 'ProductID' of undefined at t.e.getItemKey (kendo-angular-grid.js:3) at eval (kendo-angular-grid.js:3) at Array.forEach (<anonymous>) at t.e.onSelectionChange (kendo-angular-grid.js:3) at b.schedulerFn [as _next] (event_emitter.js:168) at b.__tryOrUnsub (Subscriber.ts:254) at b.next (Subscriber.ts:204) at b._next (Subscriber.ts:135) at b.next (Subscriber.ts:95) at EventEmitter.b.next (Subject.ts:61) ` ## Expected behavior No exception, maybe deselecting the row is what meant ## Minimal reproduction of the problem with instructions An official example in plunker: https://plnkr.co/edit/9G0ZHNzQge1OkJR4eLKF?p=preview Run -> Show console -> Click over a row for three times ## Environment Package versions: ` ""@progress/kendo-angular-dateinputs"": ""^1.4.2"", ""@progress/kendo-angular-dropdowns"": ""^1.5.0"", ""@progress/kendo-angular-excel-export"": ""^1.0.5"", ""@progress/kendo-angular-grid"": ""^1.6.4"", ""@progress/kendo-angular-inputs"": ""^1.4.1"", ""@progress/kendo-angular-intl"": ""^1.3.0"", ""@progress/kendo-angular-l10n"": ""^1.0.5"", ""@progress/kendo-angular-layout"": ""^1.2.0"", ""@progress/kendo-data-query"": ""^1.1.2"", ""@progress/kendo-drawing"": ""^1.4.0"", ""@progress/kendo-theme-default"": ""^2.46.0"", ` " __label__bug Geri Butonlarının Düzenlenmesi -Buton simgelerinin tek ok yapılması -Yönlendirmelerin ayarlanması "__label__bug `UNIQUE` index is not checked in presence of PK. This snippet must fail: ``` box.sql.execute(""CREATE TABLE t1(a integer primary key, b);""); box.sql.execute(""INSERT INTO t1 VALUES(1,3);""); box.sql.execute(""INSERT INTO t1 VALUES(2,3);""); box.sql.execute(""CREATE UNIQUE INDEX t2b ON t1(b);""); ``` since second column (on which index is created) contains duplicates. The error wasn't triggered since right now, when creating index in Tarantool we append [unique] PK value, so uniqueness is respected." "__label__bug Duplicate step implementations for steps with no duplicates **Expected behavior** Should get duplicate step implementation only if steps have multiple implementations. **Actual behavior** Switching between spec file and ruby file, we get duplicate step implementation on all steps defined in the file. **Steps to replicate** * Create a new gauge-ruby project * Switch between spec and .rb file >Note: The duplicate step implementation highlight on all steps. **Version** ``` Gauge version: 0.9.8.nightly-2018-01-19 Commit Hash: 0c66ca4 Plugins ------- ruby (0.4.3.nightly-2018-01-18) ```" __label__enhancement New Feature: Seasons Can we add seasons? After several hundred games the number of position changes converges to zero. Seasons could improve the long-time motivation. __label__bug Intervention participation time form Zero is wrong in Ekylibre See https://github.com/ekylibre/ekylibre/issues/1689 "__label__bug Fail to work if an admin class is related to an entity with a property named children I get an error when I try to list all the entites of a class that has a children property (boolean). The relevant part of the code is as bellow. ``` php /** * @param DatagridMapper $datagridMapper */ protected function configureDatagridFilters(DatagridMapper $datagridMapper) { $datagridMapper ->add('id') ->add('children') ->add('youth') ->add('adult') ; } ``` I get this error : ``` Key ""id"" in object with ArrayAccess of class ""Symfony\Component\Form\FormView"" does not exist in SonataAdminBundle:CRUD:base_list.html.twig at line 203 . ``` I have no error if I map all the fields of the entity but that children one. I don't have any issue neither if I refactor it to childrens. I am betting there is a naming collision somewhere. " __label__enhancement Dev quickstart "__label__bug #<StripeController:0xXXXXXX>#events (NoMethodError) ""undefined method `trial_end' for #<Stripe::StripeObject:0xXXXXXX>"" <table><tr><th>Exception</th><td>undefined method `trial_end' for #<Stripe::StripeObject:0x00005265d11430></td></tr><tr><th>Last Occurrence</th><td>January 26, 2018 22:12:58 +0000</td></tr><tr><th>Count</th><td>15</td></tr></table> ## Stack Trace <pre>[bundle].../gems/stripe-3.0.0/lib/stripe/stripe_object.rb:285:in `method_missing' <a href='https://github.com/tannakartikey/currents/blob/c2507397776c529a36cdddfeabf342044851f826/app/controllers/stripe_controller.rb#L62'>[app].../app/controllers/stripe_controller.rb:62:in `event_process'</a> <a href='https://github.com/tannakartikey/currents/blob/c2507397776c529a36cdddfeabf342044851f826/app/controllers/stripe_controller.rb#L24'>[app].../app/controllers/stripe_controller.rb:24:in `block in events'</a></pre> Fingerprint: `b9638edd83eb81f9c3103f86586fcac4f64236ea` " __label__enhancement Add USGS subagency (program office) to harvester list. Request from USGS to be added to the agency list. They will produce a code.json in 2 weeks and would like for code.gov to harvest their data. URL: https://www.usgs.gov/code.json Update record on: https://github.com/GSA/code-gov-harvester/blob/master/data/agencyMetadata.json "__label__bug Machine won't start again after pressing stop Moved from GC issue [#603](https://github.com/MaslowCNC/GroundControl/issues/603) For some reason my machine has stopped starting again after the stop button is pressed. It will stop immediately, but not move again until GC is restarted. This is a new behavior." __label__enhancement 購物車建議 客戶阿治建議可以加入分期付款的選項、以及分期付款金額門檻限制。 可以考慮新增於第三版的購物車規格裡 感恩 "__label__enhancement Catch up with new Arc schemes and other entities We need to survey Arc to find out what new schemes and other entities need to be pulled in, for example, but not limited-to, new voting machines." "__label__bug textureSize fails with create sampled images ```glsl #version 450 layout(set = 0, binding = 1) uniform texture2D u_Texture; layout(set = 0, binding = 2) uniform sampler u_Sampler; void main() { ivec2 dim = textureSize(sampler2D(u_Texture, u_Sampler), 0); } ``` Converting the shader into spv and calling `spirv-cross --hlsl 60 frag.spv` fails with `SPIRV-Cross threw an exception: Combined image samplers have no default expression representation.`. The following shader translates correctly: ```glsl #version 450 uniform sampler2D texture; void main() { ivec2 dim = textureSize(texture, 0); } ``` We also received reports for other image instructions failing with the same error: https://github.com/gfx-rs/gfx/issues/1784" __label__bug swapGamepads() isn't swapping keyboard controllers. __label__bug 0.5.0开启引导以后,开矿层就报错然后重启 __label__bug There are no RISC-V boards in the list of supported boards The RISC-V board zedboard_pulpino is not following the standard for how board documentation should be organized. This causes RISC-V to be omitted from the list: https://www.zephyrproject.org/doc/boards/boards.html It has a README file zephyr/boards/$ARCH/$BOARD/README but it should have a file like this: zephyr/boards/<arch>/<board>/doc/*.rst And there should be an index.rst file for RISC-V. If there are no supported RISC-V boards then this issue can be closed as invalid. __label__bug Order menu is not working in Menu Builder Report from Patrick __label__bug [TW-2] Unexpected behaviour - marking task as done releases task ID _Cory Donnelly says:_ Consider: <pre> $ task add foo Created task 88 $ task add bar Created task 89 $ task do 88 Completed 88 'foo' Marked 1 task as done $ task do 89 Task 89 not found </pre> This doesn't seem consistent with other areas of task -- I thought that tasks shouldn't be renumbered until a list command is completed. __label__enhancement Configure filters after window created "__label__bug OSX stopped working (2nd time in 5 days) Hi guys, Are there any updates being made that may be affecting the app or is it something on my computer? My toggle desktop app stopped opening last week so I had to uninstall it and download it again to make it work. I first tried the App Store version but that one did not work either. Today, maybe 4 days since I reinstalled it I am having the same issue. Any idea what could be happening? I know I can use the browser version in the meantime, but it is not as easy. Thanks. By the way I am running macOS Sierra 10.12.6" __label__enhancement Converter to DOCX __label__bug Home - Elemente (PH) Ankündigungen siehe #12 im Detail Es sollten hier die Spielberichte (als box) ebenfalls zu finden sein. oder muss dann für jeden Spielbericht eine news erstellt werden mit Link dahin? Oder wie ist das angedacht ? Empfehlung : es gibt eine Extrabox darunter auch mit den drei letzten Berichten und dann einen Link zur Übersichtsseite unter Aktuelles "__label__enhancement Create a set of queries that allow us to test engine performance between versions. Research a set of queries that test different parts of the engine, to be able to measure times between versions to check if we are actually improving engine or not." "__label__enhancement Data schema changes The current information extracted from the project has proven not to be enough to implement the heuristics for each pattern. Therefore, a new schema is required. The following schema should be sufficient to match at least implicit conversions, and perhaps the use if type classes. (click on the image to edit) [![](http://yuml.me/b4e15871.png)](http://yuml.me/edit/b4e15871) The semantics of each table are: - **Param:** Stores the information regarding a parameter of a declaration. - **listIndex:** Which parameter list a parameter belongs to. -1 for the return type, 0 for type parameters, and 1.. for regular parameter lists. - **listPosition:** Which (0-indexed) position the parameter takes in its list. For example, in `implicit def[A](x1: B1, x2: B2)(implicit y: C)D`, x2 has `listIndex: 1, listPosition: 0`. - The rest are fairly self-explainatory. - **Declaration:** Each entry corresponds to the declaration of an `implicit val, var, def, object or class`. - (used as id) **fqn:** The fully qualified name of the declaration, so that it can be matched. - **signature:** The type signature with the resolved names of the types - **kind:** Either `val, var, def, object, class or case class`, with modifiers such as `lazy` when appropriate. - **location:** Optional, if we have the position in the source code. - **Insertion:** Each entry corresponds to a code insertion by the compiler. It can represent the insertion of an implicit parameter into a function call, the insertion of a call to an implicit function. - (used as id) **location:** Same as above, except it is not optional - **fqn:** Same as above, used to match with declaration - **code:** In the case of a parameter, source code of the call into which the param is inserted. In the case of an inserted call, the code inserted by the compiler. - **Link:** A table linking the appearances of implicits to their declarations, with the following constraints. - A has 0 or more links to insertions. - An insertion has exactly one link to a declaration. In the case of an implicit parameter insertion, the link will point to the instantiation of the value passed. In the case of an implicit function being called, the link will point to the definition of such function. This new structure will allow us to make queries such as: ""select entries from insertion where the declaration is has kind def and it only has one non-implicit parameter"", which matches the implicit conversion pattern." "__label__bug Mobile nav menu Realized my wireframes were not very clear! Balsamiq is a bit opaque. Mobile menu should have these options across the top nav: When not logged in - ERA logo, Browse, About (dropdown includes static content pages (eg about, contact, how to deposit, etc), My Account (with little person icon), Search icon When logged in as admin - ""My Account"" is replaced by name (eg Admin, or CCID) with drop down that includes: Dashboard, Logout Dashboard only needs to appear when user clicks on dashboard in dropdown. Otherwise, it hides page changes when user click link in dashboard. Users can get to and from dashboard by using dropdown in nav, or breadcrumbs on pages. Full-sized nav menu can just expand these options (eg about pages can display across page instead of being contained in ""about"" dropdown)" __label__bug cannot import name 'LabeledSentence' #### Description LabeledSentence is not being imported from gensim.models.doc2vec. ``from gensim.models.doc2vec import LabeledSentence`` the error I am getting is ``cannot import name 'LabeledSentence'`` "__label__bug [error] otoroshi-analytics-actor - SEND_TO_ANALYTICS_ERROR We got these kind of error logs recently on our Otoroshi instance : `[error] otoroshi-analytics-actor - SEND_TO_ANALYTICS_ERROR: analytics actor error : Failure(java.lang.IllegalStateException: Stream is terminated. SourceQueue is detached)` Note: we did not activate Analytics. After a restart, everything seems ok." __label__enhancement [NON] Time Deposit for Renewal Add profile to Time deposits level 5 (if debit) "__label__bug cilk statements require a complete env in order to compute cilkFrameDeclsScopes Basically, computing `cilkFrameDeclsScopes` happens via forward, requiring the `env` to be specified. `body` may include some cilk extension constructs which expect there to be some additional things in the `env` such as a misc item indicating the type of clone, and the struct declaration that we are currently constructing. If we tried to actually add this decl to the environment used in this decoration of `body`, it would be a circular dependency, but without it `body` (rightfully) contains errors due to contained cilk sync/spawn/return statements forwarding to something referencing an undefined struct. This error only shows up when integrating with other extensions, when something else checks for errors prior to forwarding. Thus the tests in this extension pass, but the ableC_sample_projects test that integrates with the datatypes extension crashes. It is only showing up on the feature/env branch because of some slight changes to host flow types that is now demanding something that wasn't being demanded previously. My advice for fixing this is to have cilk spawn/return/sync/etc. statements check for the presence of the misc env flags, and if neither one is present then forward to `nullStmt()` (or maybe to `warnStmt` with any errors from children) silently without raising any (additional) errors. This shouldn't be too major of a change, but I just don't have time to fix this right now. (Also to be clear, this is *not* an interference problem - it's just a bug in the extension.) @TravisCarlson can you please take a look at this soonish? Thanks" "__label__enhancement Proj4 interoperability class Create a class that accepts Proj4 argument strings and return an object that representing the projection, ellipsoid, and datum. Ideally this class would also also for direct invocation of the underlying projection. For example: ``` Proj4Projection { parseProj4(String): void forward(double long[], double lat[]): double[][] inverse(double x[], double y[]): double[][] getEllipsoid(): Ellipsoid getDatum(): Datum getProjection(): Projection } ``` " "__label__enhancement Support more complete specification of CREATE INDEX statement DataNucleus has always supported the basic SQL standard `CREATE [UNIQUE] INDEX idxName ON tableName (col1, ...)` Some time back we added the ability to tag extra settings on the end of this. If we look down current RDBMS capabilities the majority allow the column ordering to be specified, so we would have `col1 [ASC|DESC]` instead of `col1`. Similarly others provide for specification of the ""type"" of index as well as other things. We should try to allow these via extensions" __label__bug Disable service worker as it's stuck and caching very old content See https://github.com/gatsbyjs/gatsby/issues/2880 for details "__label__enhancement au démarrage, améliorer la copie des contenus Plutot que de copier tout le dossier dodoc, copier contenus/publications/templates/readme.txt s’ils manquent (après avoir créé le dossier dodoc s’il n’existe pas. De manière à ce qu’il suffise de supprimer templates pour qu'il soit mis à jour vers la dernière version." "__label__enhancement Kubelet as Pod **Issue by [kubernetes-jenkins](https://github.com/kubernetes-jenkins)** _Wednesday Jul 19, 2017 at 18:45 GMT_ _Originally opened as https://git.removed/kubernetes-attic/garden-operator/issues/43_ ---- # Acceptance Criteria - [ ] Bootstrap/deploy the kubelet as pod if possible, so that it can be conveniently updated (!) Beware if kubelet is run in a docker container: Volume attachment does not work/needs a lot of time (works with --containerized) :information_source: Migrated from Jira issue [KUBE-159](https://jtrack.removed/browse/KUBE-159) " __label__enhancement Visualizar decorrer de um contest sobre a visão de uma certa equipe __label__bug Management of deviceInfoCache in BIPForeignApplication I begin to use the `BIPForeignApplication` class. But I see a major difference between `BIPSimpleApplication` and the `BIPForeignApplication` regarding `DeviceInfoCache`. Indeed both applications are children of `ApplicationIOController` but only simple application provides `DeviceInfoCache`. I think it is a oversight because `DeviceInfoCache` is used (among other) to manage segmented APDU. See attached patch to add `localAddress` and `deviceInfoCache` parameters to `ApplicationIoController` initialization. [0017_ForeignApp_AddDeviceCache.txt](https://github.com/JoelBender/bacpypes/files/1689650/0017_ForeignApp_AddDeviceCache.txt) __label__enhancement Feature: enumeration-typed parameters Finish design and implementation/UI for enumerated parameters. __label__question Why not use randombytes internally "__label__bug Descending sort in hover legend sorts by ascii Thus ""no value"" > 9 > 0" __label__bug Corregir el borrado de tareas croneadas desde el admin Se borran correctamente pero el servidor devuelve una respuesta 500 __label__bug Process Wigner smoothness of spline depends on the magnitude of the values "__label__enhancement Make events track an additional multi-purpose value Possibly a string, or an integer" __label__enhancement if room owner leaves room or his account gets deleted make the 2nd user in room owner "__label__bug allow users to access reports when granted permission Connected to #936 , but also different. * Currently, reports can only be accessed by the project owner. * When a user has been granted permission to view data of a project, they should be able to view the report * Should be implemented as a DRF permission filter. E.g. in a `kobo/apps/reports/filters.py` " __label__enhancement Allow to add code on hb-config-[SITE-TOKEN] to define ad Units to bid. "__label__enhancement copyFromRealm as an option in FlowableExtensions On every request (most notably for Flowable<T>) the results are mapped using copyFromRealm result.asFlowable() .filter { it.isLoaded } .map { **realm.copyFromRealm(it)** } .subscribe({ subscriber.onNext(it) }, { subscriber.onError(it) }) This is certainly not desirable in every case and would be ideal to have the option to have a locally copied version of the objects or the managed realm backed version. Consider the following example : class Parent : RealmObject() { var id:String?=null var children:RealmList<Child>?=RealmList<>() } class Child:RealmObject() { var id:String?=null } If I use a function like queryAllAsFlowable() on the Parent.class and want to display the attribute ""children"" backed by changes in the DB as a Flowable<RealmList<T>> then this is not possible easily as it could be if the objects emitted were back by realm. If the objects emitted by the functions in RealmExtensionsFlowable were backed by Realm then I could simply do parent.children.asFlowable(). I could of course change the data model to make this work with the current lib, but it would be a shame. Thank you for the lib in advance and hope I was clear?" "__label__bug Move ExcelPresenter instantiation into TRY-CATCH block in NovenaReportingAPI.cs Inside the NovenaReportingAPI class, move this line inside a TRY-CATCH block like _workbookPropertiesConfig. This will allow exceptions in the construction of the ExcelPresenter to be caught farther up the call stack and displayed to the user. _presenter = new ExcelPresenter(application, new DatabaseConnectionFactory().CreateDbConnection(_appConfig.DatabaseType, _appConfig.ConnectionString), new SqlGeneratorFactory().CreateSqlGenerator(databaseType), _workbookPropertiesConfig); " __label__bug React-Select. I can't remove chips from a mobile device If you turn on your browser to mobile mode you will see that the delete button from the chips of the 'React-Select' component do not trigger. I investigate and i though that it come to the React-select library... not sure. Can you check this ? "__label__bug panic: random panics with statsd instrumentation **Do you want to request a *feature* or report a *bug*?** bug **What is the current behavior?** Once the gateway is started with statsd instrumentation, gateway panics randomly. **What is the expected behavior?** Should not panic **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem** ``` [Feb 8 11:15:38] DEBUG Active Nodes: : 1 [Token Bucket Value]: 100 [Current Load p/s]: 1 [Current Load]: 0.000000 [Feb 8 11:15:39] WARN dashboard is down? Heartbeat is failing [Feb 8 11:15:40] DEBUG Sending notification{NoticeGatewayDRLNotification {""HostName"":""Ahmets-MBP.fritz.box"",""ID"":""1b55e674-8e9c-4a1e-75a4-948014054ff5"",""LoadPerSec"":1,""Percentage"":0,""TagHash"":""""} } [Feb 8 11:15:40] DEBUG Received DRL data: {Ahmets-MBP.fritz.box 1b55e674-8e9c-4a1e-75a4-948014054ff5 1 0 } [Feb 8 11:15:40] DEBUG Active Nodes: : 1 [Token Bucket Value]: 100 [Current Load p/s]: 1 [Current Load]: 0.000000 [Feb 8 11:15:41] WARN dashboard is down? Heartbeat is failing [Feb 8 11:15:42] DEBUG Sending notification{NoticeGatewayDRLNotification {""HostName"":""Ahmets-MBP.fritz.box"",""ID"":""1b55e674-8e9c-4a1e-75a4-948014054ff5"",""LoadPerSec"":1,""Percentage"":0,""TagHash"":""""} } [Feb 8 11:15:42] DEBUG Received DRL data: {Ahmets-MBP.fritz.box 1b55e674-8e9c-4a1e-75a4-948014054ff5 1 0 } [Feb 8 11:15:42] DEBUG Active Nodes: : 1 [Token Bucket Value]: 100 [Current Load p/s]: 1 [Current Load]: 0.000000 [Feb 8 11:15:43] WARN dashboard is down? Heartbeat is failing [Feb 8 11:15:44] DEBUG Sending notification{NoticeGatewayDRLNotification {""HostName"":""Ahmets-MBP.fritz.box"",""ID"":""1b55e674-8e9c-4a1e-75a4-948014054ff5"",""LoadPerSec"":1,""Percentage"":0,""TagHash"":""""} } [Feb 8 11:15:44] DEBUG Received DRL data: {Ahmets-MBP.fritz.box 1b55e674-8e9c-4a1e-75a4-948014054ff5 1 0 } [Feb 8 11:15:44] DEBUG Active Nodes: : 1 [Token Bucket Value]: 100 [Current Load p/s]: 1 [Current Load]: 0.000000 panic: runtime error: index out of range goroutine 179 [running]: runtime/debug.ReadGCStats(0x210cbe0) /Users/ahmet/go/goroots/go1.9/src/runtime/debug/garbage.go:51 +0x771 main.MonitorApplicationInstrumentation.func1() /Users/ahmet/go/src/github.com/TykTechnologies/tyk/instrumentation_handlers.go:72 +0x21a created by main.MonitorApplicationInstrumentation /Users/ahmet/go/src/github.com/TykTechnologies/tyk/instrumentation_handlers.go:65 +0x8f ``` **Which versions of Tyk affected by this issue? Did this work in previous versions of Tyk?** latest" __label__enhancement Faire une doc sur le fichier JSON (@edgd1er) "__label__bug Interaction Ids have exceeded the limit for I was trying to migrate the most recent cases from Support.desk.com and ran into a problem. Basically the id of the interactions is cast to a int field but the largest ID has exceeded the limit for the int type: GET https://support.desk.com/api/v2/interactions?fields=id&since_id=2000000000 `""_embedded"": { ""entries"": [ { ""id"": 2151931563,...` Error: Caused by: java.lang.NumberFormatException: Expected an int but was 2170972796 at line 1 column 1910 path $._embedded.entries[0].id " "__label__enhancement Switch from Exposed to another database connector/ORM Exposed, while made by Jetbrains, lacks in both documentation and features for development. For instance, Exposed doesn't have support for JSON types and Arrays, so there is really no use in going on with it." __label__bug Close and menu buttons being overlapped on resize "__label__bug Fedora/Redhat RPM packaging shebang warnings Hello, I'm packaging cacti for Fedora and Fedora-EPEL (RHEL). On Fedora rawhide I got some shebang warnings packaging the latest cacti release after running /usr/lib/rpm/redhat/brp-mangle-shebangs [cacti-shebangs.txt](https://github.com/Cacti/cacti/files/1699123/cacti-shebangs.txt) Buildlog is here: https://kojipkgs.fedoraproject.org//packages/cacti/1.1.34/1.fc28/data/logs/noarch/build.log Maybe we can fix this upstream by cacti? Thank you. Best regards, Morten" "__label__question Lots of empty statements with recursive code, and erroneously missing globals. Tried running the example from #543 [on the website](https://prepack.io/repl.html#BQMwrgdgxgLglgewsAlAAgN4Cg1vNeJPOAI2AA91tdcAbAUxjQE80BeNAEQEMZ6A6CAgDuqANxoA9JLQwAFvTRgAzvQbLlaWnAiL5vNAEk03ACan6pnDQBOjMDYhpyaADwcAjGgD8ztAC5iMhcAWjQPdABqIIo0MIAmFDFrAF8sawYmFw4ePkERcWs4EDRYgCo0eLQAPjQAFkS-DhBSYA8ABiTrAHNaBBJuWn47ZTBaJg5yZJSUcSA): ```js (function() { function fib(x) { let y = Date.now(); // the useless line that I added return x <= 1 ? x : fib(x - 1) + fib(x - 2); } let x = Date.now(); if (x * 2 > 42) x = fib(10); global.result = x; })(); ``` and I ran into this interesting oddity: <details> <summary>Click to show</summary> ```js (function () { var _$2S = this; var _$0 = _$2S.Date.now(); var _1 = _$0 * 2; var _0 = _1 > 42; { if (_0) { { { { { { { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } { { { {} {} } {} } { {} {} } } } { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } } { { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } { { { {} {} } {} } { {} {} } } } } { { { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } { { { {} {} } {} } { {} {} } } } { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } } } { { { { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } { { { {} {} } {} } { {} {} } } } { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } } { { { { { {} {} } {} } { {} {} } } { { {} {} } {} } } { { { {} {} } {} } { {} {} } } } } } } } var _5 = _0 ? 55 : _$0; result = _5; }).call(this); ``` </details> Note that if you remove the `Date.now()` in `fib`, the problem disappears. So I suspect it's related to #543. Also, as a side note, [it's erroneously believing `module` and `require` don't exist in Node](https://prepack.io/repl.html#BQMwrgdgxgLglgewsAlAAgN4Cg1oERgDOApmoTAE5yx4DcOa408SjcARsAB7ra64ViARzBxBwPCAQI8KevzSCYYChDRc0AHgC8aAIxoA-OrQAuNpw0BafegDUF7mhsAmOQwC+DBgBtiME10AEQBDGGIAOggEAHdUeTQ4EDQnACo0FzQAPjQAFjdAxz0ABndcAFsEABMwPwjiLgAHBAoYQjRdLnoPFHigA)." __label__enhancement Alacritty config file: more locations https://github.com/jwilm/alacritty#configuration has more configuration dirs that should be looked into to get the terminal font. "__label__bug az aks browse fails with 'Error from server (NotFound): pods ""ubernetes-dashboard"" not found' After creating a new AKS cluster in East US, I try to use `az aks browse`, but it immediately fails: ``` %> az aks browse -g <resource-group> -n <cluster-name> Proxy running on http://127.0.0.1:8001/ Press CTRL+C to close the tunnel... Error from server (NotFound): pods ""ubernetes-dashboard-6d9c57c89c-mvc62"" not found %> ``` I can use kubectl to connect to the dashboard just fine using `kubectl proxy`. The kubernetes-dashboard pod is running just fine, it looks like azure cli is using the wrong pod name (the string is bring truncated at the start). ``` %> kubectl get pods --namespace kube-system --output name --selector k8s-app=kubernetes-dashboard pod/kubernetes-dashboard-6d9c57c89c-mvc62 %> kubectl port-forward kubernetes-dashboard-6d9c57c89c-mvc62 8001:9090 --namespace kube-system Forwarding from 127.0.0.1:8001 -> 9090 Forwarding from [::1]:8001 -> 9090 ``` " __label__enhancement add reload tabs command for current window only currently works for all windows "__label__enhancement Setup isolated environment for feature branch testing - Setup isolated env - Every branch should have its own databases https://mislav.net/rails/branching-the-database-along-with-your-code/ - Here is the database.yml file I use for development https://gist.github.com/artur-beljajev/7f33c5730a6c268d3bbf7d269faab63f (leave only needed envs) - Branch switcher should allows each tester to choose a branch (some bash script, no web UI) 1. git fetch 2. git checkout origin/registry-xxx 3. git pull origin registry-xxx 3. bundle install 4. rake db:setup:all (it's worth checking how it behaves if run repeatedly, i.e. a tester selects same branch multiple times). I guess it's needed running db:drop:all before db:setup, since new migrations can appear once branch is selected. Or check if databases already exist and run db:migrate 5. Import default data (users, domains, contacts, epp sessions, etc) 6. Restart app server I usually run those feature branch tests using `development` Rails env. Also, there is no need to generate assets. ### Limitations: - It turns out that max length of database name is 63, so branch name ""refactor-some-super-feature-in-admin-and-registrar-and-registrant-areas"" means database name of ""registry_api_log_development_refactor-some-super-feature-in-admin-and-registrar-and-registrant-areas"", which it turn means it will be truncated to 63 chars (100 to 63). ### Open questions: - How and when to purge unused databases" __label__enhancement Food Subscribe -user has many food subscribe plan -user must pay before subscribe -user can choose the time they want to submit "__label__enhancement Metabase: should have access to profiles DB, updated from production this should be done as a pod which periodically copies data (or recieves data) from production profiles DB and makes it available to metabase via a read-only DB" "__label__bug [TW-1699] Command interpretation displayed incorrectly _Tomas Babej on 2015-09-18T05:17:23Z says:_ Consider running: {code} task project:Work [task next ( project )] {code} The ""[task next ( project )]"" note does not display the actual value of project used for filtering. This is a regression from 2.4.4 where ""[task next project = Work]"" would be displayed in this case. The issue seems to happen with attribute modifiers too, probably same mechanism involved. If explicit algebraic operators are used, correct output is produced: {code} task project == Work [task next ( project == Work )] {code}" __label__enhancement Add ability to pass a logger instance to the constructor Use case is for tools like `api-console-cli` that integrates many modules and should be able to use single logging instance with all modules. This allows to produce single debug file output on the top module level. "__label__enhancement Re-introduce support for model identifiers Commit 0ed9324dfa83df05257eaced42aaec582deff53c replaces the model identifier text field with a dropdown to choose a model. Whilst this is extremely useful, it would be great if there was also an option to enter the model identifier as listed in iTunes (eg. `iPhone9,4`). To achieve this, you could add an `Other` option to `#deviceType`, which replaces `#deviceModel` with a text field in which they can enter their model ID. This is beneficial as it allows copying the model identifier from iTunes, in case one doesn't know whether their device is GSM, CDMA, or Global. Since the user needs to open iTunes for their ECID anyways, it doesn't require any extra steps." "__label__question Resolver to get interfaces as well as component I am searching for a resolver that will also be able to parse `Interface` as well as `Component`. I only saw 3 resolvers from `react-docgen` modules named `findAllComponentDefinitions.js`, `findAllExportedComponentDefinitions.js` and `findExportedComponentDefinition.js`. While running the styleguide i get the `Warning: components/code-editor/typescript/models/AceSession.ts matches a pattern defined in “components” or “sections” options in your style guide config but doesn’t export a component.` warning and my interface won't show. here's my files. **webpack.config.js** ``` /** * Custom Webpack config for Storybook * https://storybook.js.org/configurations/custom-webpack-config */ const path = require('path'); const webpack = require('webpack'); module.exports = { devtool: 'eval', module: { rules: [ { test: /\.(ts|tsx)$/, include: path.resolve(__dirname, './components'), loaders: ['ts-loader'], exclude: /node_modules/ }, { test: /\.scss$/, use: [ { loader: 'style-loader' }, { loader: 'css-loader' }, { loader: 'sass-loader' } ], include: path.resolve(__dirname, './public/sass/') }, { test: /\.js$/, exclude: /node_modules/ }, { test: /\.md$/, use: [ { loader: 'html-loader' }, { loader: 'markdown-loader' } ] } ] }, resolve: { extensions: ['.webpack.js', '.scss', '.css', '.js', '.ts', '.tsx'] }, node: { fs: 'empty' } } ``` **styleguide.config.js** ``` const path = require('path'); const changeCase = require('change-case'); module.exports = { title: 'b2-common-components', assetsDir: 'public/', resolver: require('react-docgen').resolver.findAllExportedComponentDefinitions, getComponentPathLine(componentPath) { const componentName = componentPath.split('/')[1] const name = changeCase.pascalCase(componentName) const dir = componentName return `import ${name} from '${dir}';` }, // components: 'components/**/*.tsx', template: path.resolve(__dirname, './public/index.html'), propsParser: require('react-docgen-typescript').withCustomConfig('./tsconfig.json').parse, webpackConfig: require('./webpack.config.js'), showUsage: true, showCode: true, ignore: ['**/node_modules/**/*.*'], // skipComponentsWithoutExample: true, sections: [ { name: 'Introduction', content: 'readme/Introduction.md' }, { name: 'Components', description: 'All the components provided by platform-6', ignore: ['components/helpers/typescript/index.tsx'], components: 'components/**/*.tsx', }, { name: 'Interfaces', description: 'Interfaces used by b2-common-components', sections: [ { name: 'AceSession', description: 'ace session object that keep ace editor state', components: 'components/code-editor/typescript/models/AceSession.ts' } ] } ] } ``` **AceSession.ts** ``` interface AceSession { id: string; selection: AceAjax.Selection; value: string; history: { undo: any[]; redo: any[]; }; scrollTop: number; scrollLeft: number; options?: any; cursorPosition?: AceAjax.Position; savable?: boolean; firstChangeTime: number; } export default AceSession ``` **Preview** <img width=""1184"" alt=""preview"" src=""https://user-images.githubusercontent.com/6729188/34884123-06715766-f7bc-11e7-9966-60136655bec9.png""> Maybe I am wrong and it is not because I don't have the right resolver and my configuration is wrong, but then I don't see what can I do to display my interface. Hope you can help me there. " "__label__enhancement ENH: Forward & back fill methods I think with `np.flip` and `bn.push`, this should be simple. They're both fairly new and so would require version checks / upgrading the minimums. One small issue, I wonder if anyone has come across this: `bottleneck` returns the numpy array rather than the DataArray - is that because it's not operating with the correct numpy interface? Forward fill: ``` array.values = bn.push(array.values, axis=array.get_axis_num(axis_name)) ``` Backfill: ``` axis = array.get_axis_num(axis_name) # reverse for bfill array = np.flip(array, axis=axis) # fill array.values = bn.push(array.values, axis=axis) # reverse back to original result = np.flip(scaling, axis=date_axis) ```" __label__bug hi hi "__label__enhancement Configurable context Allow to configure a _context_ for incoming requests. For example: The _context_ is ""/foo"" and the incoming request is ""/foo/bar"", then all the listening handlers to ""/bar"" will be called. Tips: - When the handlers/routes are checked in routers, the _context_ will be removed from the beginning of the path before check if the handler/route fit with the path. - If the handler related path doesn't start with the _context_, it will not be called in any case. - If the incoming request path doesn't start with the _context_, any handler/router will be called." "__label__bug WML parser doesn't properly handle variables in non-quoted strings (GNA #16692) **[Original submission](https://gna.org/bugs/index.php?16692)** by anonymissimus on 2010-09-12 ``` [event] name=turn 2 {DEBUG_MSG 1} {VARIABLE var 3} [event] name=turn $var delayed_variable_substitution=no {DEBUG_MSG 2} [/event] [/event] ``` The nested event's name expands to turn3 instead of turn 3, visible in the savegame and thus doesn't fire. It works if the space in turn $var is replaced by an underscore so that's a workaround. ------------------------------------------ lua.cpp, luaW_tovconfig, line 392: The config data about the nested event's name looks already suspicious when it comes from the lua interface and it looks like a bug that may have more than this effect. (Reproduced on win xp) Release: trunk r46431 Priority: 5 - Normal Severity: 3 - Normal" "__label__enhancement [TW-80] rc:- as internal minimal .taskrc _Federico Hernandez says:_ task requires either $HOME/.taskrc or the usage of rc:<file-name>. rc:- would tell task to use a ""minimal internal"" .taskrc configuration where data.location is set to the current dir (""data.location=.""). All other configuration variables would be used with their built-in default values. This would make the creation of minimal .taskrc file for testing superfluous. Perhaps having rc:+ would also be useful. rc:- would have data.location as the current dir and American dateformat whilee rc:+ would have the dateformat in European style. Confirmation could also be set to off aswell." __label__bug [UWP] Compile to .net native ---> application crash Windows 10 fall creator SDK fall creator Client devices 1.6.1 When I include package version 1.6.1 and then compile using .net native i can't run my application anymore. Entry point not found is the error. including the package is enough to get this startup error. [App4.zip](https://github.com/Azure/azure-iot-sdk-csharp/files/1596110/App4.zip) __label__bug Reset from dying does not automatically move weapon "__label__enhancement Add an area ""Contribution Winners"" * Add the remaining leaders who are not grand prize winners or finalist winners in an area ""Contribution Winners"" (below the winners/finalists). See here https://codein.withgoogle.com/organizations/fossasia/ * Rename ""Finalists"" to ""Finalist Winners""" "__label__bug Fix left arrow button not working in hearing navigation If hearing has less than 6 subsections, the left button does not work." "__label__enhancement Lombok v1.16.20 https://projectlombok.org/changelog v1.16.20 (January 9th, 2018) PLATFORM: Better support for jdk9 in the new IntelliJ, Netbeans and for Gradle. BREAKING CHANGE: lombok config key lombok.addJavaxGeneratedAnnotation now defaults to false instead of true. Oracle broke this annotation with the release of JDK9, necessitating this breaking change. BREAKING CHANGE: lombok config key lombok.anyConstructor.suppressConstructorProperties is now deprecated and defaults to true, that is, by default lombok no longer automatically generates @ConstructorProperties annotations. New config key lombok.anyConstructor.addConstructorProperties now exists; set it to true if you want the old behavior. Oracle more or less broke this annotation with the release of JDK9, necessitating this breaking change. DEVELOPMENT: Compiling lombok on JDK1.9 is now possible. BUGFIX: The generated hashCode would break the contract if callSuper=true,of={}. Issue #1505 BUGFIX: delombok no longer prints the synthetic outer-class parameter. Issue #1521 BUGFIX: @Builder.Default now also works when type parameters are present. Issue #1527 BUGFIX: @Builder now also works on method with a generified return type. Issue #1420 INSTALLER: By default, the lombok installer now inserts an absolute path in eclipse.ini and friends, instead of a relative path. If you want the old behavior, you can use java -jar -Dlombok.installer.fullpath=false lombok.jar. " __label__enhancement To do - [x] Rewrite texts - [x] Add images - [x] Implement sliders - [x] Fix styles for mobile devices - [x] Refactor works__item with CSS Grids to fix ul position - [x] Fix bullets for items on the right side - [x] Add slider for expectations section on tablets and mobiles - [x] Fix links for footer on 768px devices - [x] Animate the website "__label__enhancement Authentication > Forgot Password As a sponsor or developer, I can request a new password" __label__bug Module not found: Can't resolve 'binance-api' in '/root/TradingBot/src/scenes/Home' hello it cant compile Module not found: Can't resolve 'binance-api' in '/root/TradingBot/src/scenes/Home' "__label__bug Spacebar and Left Mouse shoot at the same time Non-Intended, needs a lock variable, so you can only shoot with one at a time. In later levels, maybe you could use both, so the levels become easier? ## Further detailing You can smash both buttons at the same time, creating a stream with double the amount of shoots it would fire if the default behavior was being used. Spacebar and Left mouse shooting should be considered alternative controls, not separate entities. A lock between these buttons should be created, so you can't use both at the same time. A future implementation could add this shooting behavior as an upgrade to the shooting mechanisms." "__label__bug pagination shouldn't show next/prev if they're empty this probably implies we'll have to write custom marshaling for the temporary structs, grr..." "__label__enhancement [TW-580] Allow proactive initialization with 'task init' _Nicholas E. Rabenau on 2012-07-07T20:23:35Z says:_ I am using TaskWarrior in an continuous integration environment where I know that no configuration exists yet (fresh machine for every test run). When task is invoked for the first time without any existing configuration (.taskrc file and .task directory), it asks at least one question in an interactive manner. In an automated test environment, that's not ideal. While I could simulate one or more keystrokes, I wouuld rather prefer a proactive approach and initialize TaskWarrior with a dedicated task. Therefore I would like to propose a new command called (at)task init@, which would create all the files and folders that are necessary to run TaskWarrior. It could even take a number of parameters that would allow customization of the initial settings. Here is what I do right now as a workaround: <pre> mkdir ~/.task echo data.location=~/.task > ~/.taskrc </pre>" __label__bug Add Underwear and Uniform to bower.json uninstall bootstrap As you can see in https://github.com/Starcounter/StarcounterClientFiles/blob/1.x/src/StarcounterClientFiles/bower.json they are not installed. Also the file referenced in `app-shell.html` does not exist in underwear.css bower package. "__label__bug Cannot access wasbs filesystem from submitted job When I run an application via job submission, it looks like the azure storage jars are not added to the classpath (I see `java.io.IOException: No FileSystem for scheme: wasbs`). I've tried adding them to the application's `jars:` key in job.yaml, but this doesn't help. In the log output I also see: ``` Warning: Local jar /home/spark-current/jars/azure-storage-2.0.0.jar does not exist, skipping. Warning: Local jar /home/spark-current/jars/hadoop-azure-2.7.3.jar does not exist, skipping. Warning: Local jar /home/spark-current/jars/azure-data-lake-store-sdk-2.2.3.jar does not exist, skipping. ``` Followed by: ``` java.io.FileNotFoundException: Jar /home/spark-current/jars/azure-storage-2.0.0.jar not found at org.apache.spark.SparkContext.addJarFile$1(SparkContext.scala:1807) at org.apache.spark.SparkContext.addJar(SparkContext.scala:1833) at org.apache.spark.SparkContext$$anonfun$12.apply(SparkContext.scala:466) at org.apache.spark.SparkContext$$anonfun$12.apply(SparkContext.scala:466) at scala.collection.immutable.List.foreach(List.scala:381) at org.apache.spark.SparkContext.<init>(SparkContext.scala:466) at org.apache.spark.SparkContext$.getOrCreate(SparkContext.scala:2509) at org.apache.spark.sql.SparkSession$Builder$$anonfun$6.apply(SparkSession.scala:909) at org.apache.spark.sql.SparkSession$Builder$$anonfun$6.apply(SparkSession.scala:901) at scala.Option.getOrElse(Option.scala:121) at org.apache.spark.sql.SparkSession$Builder.getOrCreate(SparkSession.scala:901) ``` And similar for `hadoop-azure-2.7.3.jar`, `azure-data-lake-store-sdk-2.2.3.jar`. Do I need to do something in the config to make this work, or is it a bug?" "__label__enhancement Replace TextEdit component with Scintilla It is necessary to replace default TextEdit component with Scintilla, which will enable us to implement lots of features easily." __label__bug Add mustache variables within lists "__label__question Commit changes within 2 projects; multiple lint-staged & git hooks # Commit changes within 2 projects; multiple lint-staged & git hooks I've Backend & Frontend project configured on the same repository, let's say I've Backend with ESLint & Frontend with TSLint **Can I have somehow run both lint-staged configurations when I commit changes on both projects?**" __label__bug verify that crab resubmit restarts the task_process if needed "__label__bug Empty select box offset in editor toolbar If the paragraph style dropdown is empty, it is offset. ![bildschirmfoto 2017-12-21 um 12 13 05](https://user-images.githubusercontent.com/3976405/34253558-6d73c578-e648-11e7-8cab-d4c0b541e4cd.png) " "__label__question How do I send a request which the parameter type is ""query"" and the param is a array? like this, ```swift var task: Task { switch self { case .xxxrequest(let IDs): // IDs is a Int array return .requestParameters(parameters: [""ids"" : IDs], encoding: URLEncoding.queryString) } } ``` then I got a ``400``HTTP code, and I retry the JSONEncoding and PropertyListEncoding, but still not work. The expected result like this: ``http://www.domain.com/xxx/xxx?ids=1&ids=2`` Help! Please" "__label__bug Team show In the team show component, I map the state to props with team. But then this.props.team is undefined in the show page. The state is initially empty. So it waits for the index to mount, then populates the state with teams, but by then its too late for the show page. " "__label__bug ResolveContext::getArgument() can't handle missing arguments It should use null coalescing instead of a ternary. Currently you'll get ""Undefined index foo"" if you try to get a non-existing argument." __label__enhancement Coalesce counters in metrics batches If we increment the same counter a number of times in the same request (e.g. success counters for a client call) we'll currently append a bunch of +1 lines to the metrics batch. It'd be much better to turn that into a single +N line to save space in metrics packets. __label__bug ExpandedListItem is not working correctly again ## Steps to Reproduce 1. Got to Settings 2. Set the theme to Suru Dark 3. Close the app 4. Reopen the app. 5. Change the theme to Ambiance/System ## Expected Result Ambiance/System should be the one marked with check once selected. ## Actual Result SuruDark is still the one marked with check although the settings actually took effect and the subtitle correctly shows the selected theme. __label__bug Parse music and sound should show update Parsing music and sound files in the load service should count as a step in the percentage. Right now the parsers are immediately executed like the system parser. __label__enhancement [TW-168] modification of due date relative to current due date _dirk sarpe says:_ It is possible to change a wait date relative to a due date (see http://taskwarrior.org/issues/201) but something like task 63 mod due:+2d is not. Usecase: more easy to postpone a task :) "__label__bug ./scancode --help dumps stack trace on Debian Using scancode-toolkit from git, version 54b9a2 I get the following; ``` $ ./scancode --help Traceback (most recent call last): File ""/home/jeremiah/GitHub/scancode-toolkit/bin/scancode"", line 6, in <module> from pkg_resources import load_entry_point File ""/home/jeremiah/GitHub/scancode-toolkit/local/lib/python2.7/site-packages/pkg_resources/__init__.py"", line 74, in <module> __import__('pkg_resources.extern.packaging.requirements') File ""/home/jeremiah/GitHub/scancode-toolkit/local/lib/python2.7/site-packages/pkg_resources/extern/__init__.py"", line 61, in load_module ""distribution."".format(**locals()) ImportError: The 'packaging.requirements' package is required; normally this is bundled with this package so if you get this warning, consult the packager of your distribution. ``` As I say I pulled the code from git so I'm not sure why its telling me to install 'packaging.requirements' or even what that package is." "__label__enhancement Add support for all measurements to vscp_getVSCPMeasurementAsString/vscp_getVSCPMeasurementAsDouble vscp_getVSCPMeasurementAsString/vscp_getVSCPMeasurementAsDouble currently just support CLASS1.MEASUREMENT CLASS2_LEVEL1.MEASUREMENT CLASS2_MEASUREMENT_FLOAT CLASS2_MEASUREMENT_STR support should be added for all measurement classes, " __label__bug Sporadic BindException on starting fork Starting a fork fails sometimes with the following exception: ``` java.net.BindException: Die Adresse wird bereits verwendet (Bind failed) at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.AbstractPlainSocketImpl.bind(AbstractPlainSocketImpl.java:387) at java.net.ServerSocket.bind(ServerSocket.java:375) at java.net.ServerSocket.<init>(ServerSocket.java:237) at de.gebit.integrity.remoting.transport.ServerEndpoint.<init>(ServerEndpoint.java:83) at de.gebit.integrity.remoting.server.IntegrityRemotingServer.<init>(IntegrityRemotingServer.java:94) at de.gebit.integrity.runner.DefaultTestRunner.initialize(DefaultTestRunner.java:563) ``` It might happen that the free port found by the master process is not free anymore when the fork tries to open a server socket on it. The issue can be solved if the fork would start a server socket on any free port an communicate the bound port via stdout/stderr or a file to the master process: ``` try (ServerSocket socket = new ServerSocket(0)) { int tPort = socket.getLocalPort(); // communicate the port to the master... } ``` "__label__enhancement Delete redundant requirements.txt There are two, one must be redundant" "__label__bug minPhase generation doesn't work The ""min-phase"" FIR created has wrong energy conservation, and wrong shape it seems." "__label__enhancement Feature Request: Optohybrid Firmware Release Register Please change OHv3 firmware release info registers to match `CTP7` registers. e.g. for the CTP7 we can see easily the release `vX.Y.Z` where `X` is the Major, `Y` is the Minor, and `Z` is the build, and the date in four dedicated registers: ``` eagle60 > kw RELEASE 0x6640000c None GEM_AMC.GEM_SYSTEM.RELEASE 0x6640000c r GEM_AMC.GEM_SYSTEM.RELEASE.MAJOR 0x00000003 0x6640000c r GEM_AMC.GEM_SYSTEM.RELEASE.MINOR 0x00000002 0x6640000c r GEM_AMC.GEM_SYSTEM.RELEASE.BUILD 0x00000007 0x66400010 r GEM_AMC.GEM_SYSTEM.RELEASE.DATE 0x20171211 ``` However the OH FW gives just the date as three separate registers: ``` 0x65000004 None GEM_AMC.OH.OH0.FPGA.CONTROL.RELEASE 0x65000008 r GEM_AMC.OH.OH0.FPGA.CONTROL.RELEASE.YEAR 0x00002018 0x65000008 r GEM_AMC.OH.OH0.FPGA.CONTROL.RELEASE.MONTH 0x00000001 0x65000008 r GEM_AMC.OH.OH0.FPGA.CONTROL.RELEASE.DAY 0x00000016 ``` Definitely prefer the approach used by the CTP7. Could we change the OH to have this layout?" "__label__question [question][quick-fix] Customizing the UI in the quick fix pop-up dialogs Currently, I was unable to customize the label in the quick fix pop-up dialog. If one would like to have something else on the UI but `x quick fixes available` then the entire logic has to be copied over and customized in the downstream projects. See [here](https://github.com/eclipse/xtext-eclipse/blob/b824522b4fbec17ae0428781f9a92448e50552e7/org.eclipse.xtext.ui/src/org/eclipse/xtext/ui/editor/hover/AnnotationWithQuickFixesHover.java#L322). The question is; would it make sense to adjust the Xtext code a bit, so that it becomes more flexible and customizable? If so, I can make a contribution here, if no, I just copy it over and change it in the downstream project. Please note, this point, I do not yet have a clear idea what and how to make it, I just thought it worth an upfront question here, before I start further investigating it. Thanks!" __label__enhancement Add ability to record and replay sounds __label__enhancement Hard code dataset GUID in config The DATASET in config.py file is not sensitive. "__label__bug exponential underflows in dEdd shortwave Some compilers are complaining about underflows in the shortwave calculation. These are coming from exponentials with very small arguments. The current code to get rid of those values does not avoid their being calculated in the first place: > argmax = 10. > exp_min = exp(-argmax) > f = max(exp(-A), exp_min) ! exp(-A) is what we are trying to compute We should do this instead: > argmax = 10. > exp_min = min(argmax, A) > f = exp(-exp_min) This type of calculation occurs in 3 places in icepack_shortwave.F90. I expect this to change the answers (nonBFB). " "__label__enhancement Add loading indicator for instant search Right now after typing nothing happens until the result pops up. It would be handy to have a small loading indicator inside the box, to the right (right by the search button), that pops up as soon as a request has been fired away. " __label__enhancement Provide extendable factories for beacons "__label__bug Category and Sponsor fields in posts - display issue When creating a new post in Django admin - You can't see which are the category names, as their display name is `Category Object` --- Category field ![screen shot 2018-01-17 at 13 31 27](https://user-images.githubusercontent.com/906237/35059998-00db4a32-fb8b-11e7-8570-3ca53262af57.png) --- Sponsor field ![screen shot 2018-01-17 at 13 33 42](https://user-images.githubusercontent.com/906237/35060027-1aedf3c0-fb8b-11e7-996b-7a6c3d80118a.png) --- On website ![screen shot 2018-01-17 at 13 40 20](https://user-images.githubusercontent.com/906237/35060286-fecaca3c-fb8b-11e7-8aa3-bb5e8f59858d.png) " "__label__enhancement control the heating element temperature ? Hi short questions is it possible to control the heating element temperature ? My Homeatic IP Device Homematic IP Heizkörperthermostat HMIP-eTRV/2 140280 tried python3 homematicip_cli.py --device ID --set-display setpoint 20 but didnt worked, is it even possible ? " "__label__enhancement Refactor ConfigurationManager to allow different loaders Defer finding, reading and parsing of configuration to a service (ConfigurationProvider). That allows using different lookup algorithms, config file names and format and custom parsers." "__label__bug variable function calls do not count as variable usage The following example marks a warning on line 5, but it should not. ```php <?php class MyClass { public function myFunc($meta, $callback) { $get_meta_callback = $callback; return self::$get_meta_callback( $meta ); } } ```" __label__bug 한글 깨짐 문제 __label__bug XTicks for all inner plots should be turned off otherwise they appear as ghostly white apparations __label__enhancement Contract Deployer : add deployed address upon successful contract creation and deployment Currently there is no way for a user to easily get the address if the contract is successfully deployed - possibly adding this to the message would be helpful or displaying in some other way. __label__enhancement Settings image ekranı yazılacak. "__label__bug Error with persist_as @andy-esch When attempting to persist an augmented table using cc.data('denver_stations', carfree, persist_as='persist_test') received this error: ``` --------------------------------------------------------------------------- JSONDecodeError Traceback (most recent call last) <ipython-input-122-51c758ead48b> in <module>() 7 8 df = cc.data('denver_stations', carfree) ----> 9 cc.data('denver_stations', carfree, persist_as='persist_test') /srv/venv/lib/python3.5/site-packages/cartoframes/context.py in data(self, table_name, metadata, persist_as, how) 1432 '\'', '\'\'')) 1433 return self.query(query, -> 1434 table_name=persist_as) 1435 1436 # backwards compatibility /srv/venv/lib/python3.5/site-packages/cartoframes/context.py in query(self, query, table_name, decode_geom) 628 # collision_strategy='', 629 table_name=table_name), --> 630 headers={'Content-Type': 'application/json'}) 631 except CartoException: 632 raise CartoException('Table `{0}` already exists. Delete it ' /srv/venv/lib/python3.5/site-packages/cartoframes/context.py in _auth_send(self, relative_path, http_method, **kwargs) 1447 if isinstance(res.content, str): 1448 return json.loads(res.content) -> 1449 return json.loads(res.content.decode('utf-8')) 1450 1451 def _check_query(self, query, style_cols=None): /usr/lib/python3.5/json/__init__.py in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw) 317 parse_int is None and parse_float is None and 318 parse_constant is None and object_pairs_hook is None and not kw): --> 319 return _default_decoder.decode(s) 320 if cls is None: 321 cls = JSONDecoder /usr/lib/python3.5/json/decoder.py in decode(self, s, _w) 337 338 """""" --> 339 obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 340 end = _w(s, end).end() 341 if end != len(s): /usr/lib/python3.5/json/decoder.py in raw_decode(self, s, idx) 355 obj, end = self.scan_once(s, idx) 356 except StopIteration as err: --> 357 raise JSONDecodeError(""Expecting value"", s, err.value) from None 358 return obj, end JSONDecodeError: Expecting value: line 1 column 1 (char 0) ```" "__label__bug Linear dsg process heat model with evacuated tube heat loss bug Not sure exactly what the bug was, but there was an issue @tyneises identified within the linear dsg process heat model with evacuated tube heat loss." __label__enhancement Testing. __label__bug Travis still broken #12 still hasn't seemed to resolved the fact that `index.html` is served only <https://elementnet.js.org/elementnet-editor/build/>. __label__bug new bug -opened openddd "__label__question Repeat masking With loose parameters, the on-demand macro-synteny service may generate several artifacts, specifically, there will likely be several blocks that appear to be repeats. Is there an intelligent masking scheme we can use to distinguish between artifacts and true repeats? Perhaps removing families who have more than a certain number of members present in either of the chromosomes blocks are being computed for? This could be another tunable parameter in the UI." __label__enhancement Mail with personal address (name) should avoid spam filter rejection __label__enhancement Lesson 03: Green-Recycler-View = Coding Exercise - T03.07-Exercise-RecyclerViewClickHandling Complete exercise. "__label__bug [MINOR] GemmaWeb generated Differential Expression Analysis Files are missing Probe-Gene Annotation Case-In-Point: https://gemma.msl.ubc.ca/expressionExperiment/showExpressionExperiment.html?id=522 Problem: When invoking the ""Download Differential Expression Analysis Files"" from GemmaWeb, the individual analysis files in the zip files are missing the probe:gene mapping annotation. Example: `Element_Name Gene_Symbol Gene_Name NCBI_ID FoldChange_3.hours Tstat_3.hours PValue_3.hours FoldChange_24.hours Tstat_24.hours PValue_24.hours FoldChange_72.hours Tstat_72.hours PValue_72.hours 1370651_a_at 0.1310 0.3014 0.7659 0.03988 0.09173 0.9277 -0.1496 -0.3441 0.7340` List of what are not the problems: 1. Are the probes in the array mapped to genes? Yes. (https://gemma.msl.ubc.ca/arrays/showArrayDesign.html?id=2) 2. Is the information shown in ""Visualize Experiment"" Tab? Yes. [Example uses the same probe in the case shown above] (https://gemma.msl.ubc.ca/dedv/downloadDEDV.html?ee=522&g=961033)" "__label__enhancement CTGUI support I know you've said it'll be a while before you can implement any more suggestions, but I thought I would throw this out there. https://crafttweaker.readthedocs.io/en/latest/#Vanilla/CTGUI/ If this is already there, I didn't see it in the documentation anywhere. Your mod is amazing, keep up the great work!" "__label__enhancement Add Offline Storage Add Offline Storage for Servers, Images, Floating IPs " "__label__bug Default tolerance for FMU simulation The simulation of FMUs uses the default solver settings from JModelica, namely cvode with rtol = 1e-4. In the cases of building energy simulation, which contains thermo-fluid systems, a tighter tolerance is recommended to ensure stable results (See for instance, http://simulationresearch.lbl.gov/modelica/userGuide/bestPractice.html - Sec 2.9). This issue will change the default in MPCPy to cvode with rtol=1e-6. Note that this could change results obtained from previous versions." "__label__enhancement Optimize StarDump reload time Currently StarDump reload procedure may take up to 1 hours for a few million records database. The CPU is almost not utilized during the reload, so it should be optimized to do the job faster." "__label__bug GCE : Orca Exception while running pipeline via jenkins trigger *Title* Orca Exception while running pipeline via jenkins trigger *Cloud Provider* GCP *Environment* OS: Ubuntu Xenial 16.04 Version of Spinnaker sub-services used: ``` spinnaker 0.83.0 spinnaker-clouddriver 1.773.0 spinnaker-deck 2.1176.0 spinnaker-echo 1.543.0 spinnaker-fiat 0.39.0 spinnaker-front50 1.120.0 spinnaker-gate 4.18.0 spinnaker-igor 1.87.7 spinnaker-keel 0.8.0 spinnaker-orca 6.2.8 spinnaker-rosco 0.103.0 spinnaker-rush 1.25.0-3 ``` *Feature Area* Triggers, Pipelines, Jenkins,Orca *Description* I have upgrade spinnaker today to above mentioned version. After this upgrade I started observing issues in Orca. All the triggered pipeline that are configure to triggered by jenkins jobs are failing to be triggered hence pipeline never get executed. Though Manual execution works fine. *Steps to Reproduce* - Install above mention version of spinnaker on GCE - Integrate it with Jenkins - Create a dummy jenkins job with some `build_info.yml` artifact - Create a test pipeline that use above jenkins job as automated trigger under pipeline configuration - Use the above `build_info.yml` as property file of the trigger *Additional Details* Orca error log: ``` 2018-02-08 14:17:11.088 INFO 27331 --- [0.0-8083-exec-6] c.n.s.o.c.OperationsController : [] received pipeline f3f705c8-c92c-44d8-bc03-8b7d4fb15bd2:{ ""application"" : ""test"", ""config"" : null, ""name"" : ""test-setup"", ""id"" : ""f3f705c8-c92c-44d8-bc03-8b7d4fb15bd2"", ""executionEngine"" : null, ""parallel"" : false, ""disabled"" : false, ""limitConcurrent"" : true, ""triggers"" : [ { ""enabled"" : true, ""id"" : null, ""type"" : ""jenkins"", ""master"" : ""Jenkins"", ""job"" : ""image_common"", ""buildNumber"" : null, ""propertyFile"" : ""build_info.yml"", ""cronExpression"" : null, ""source"" : null, ""project"" : null, ""slug"" : null, ""hash"" : null, ""parameters"" : null, ""account"" : null, ""repository"" : null, ""tag"" : null, ""digest"" : null, ""payloadConstraints"" : null, ""payload"" : null, ""attributeConstraints"" : null, ""branch"" : null, ""runAsUser"" : null, ""secret"" : null, ""subscriptionName"" : null, ""pubsubSystem"" : null, ""expectedArtifactIds"" : null, ""lastSuccessfulExecution"" : null } ], ""type"" : null, ""stages"" : [ { ""cloudProvider"" : ""gce"", ""cloudProviderType"" : ""gce"", ""continuePipeline"" : false, ""credentials"" : null, ""failPipeline"" : true, ""name"" : ""Find Image from Tags"", ""onlyEnabled"" : true, ""packageName"" : ""${ trigger.properties['image_name']}"", ""refId"" : ""1"", ""regions"" : [ ], ""requisiteStageRefIds"" : [ ], ""selectionStrategy"" : ""LARGEST"", ""tags"" : { }, ""type"" : ""findImageFromTags"" } ], ""notifications"" : null, ""receivedArtifacts"" : null, ""expectedArtifacts"" : null, ""parameterConfig"" : null, ""appConfig"" : null, ""trigger"" : { ""enabled"" : true, ""id"" : null, ""type"" : ""jenkins"", ""master"" : ""Jenkins"", ""job"" : ""image_common"", ""buildNumber"" : 102, ""propertyFile"" : ""build_info.yml"", ""cronExpression"" : null, ""source"" : null, ""project"" : null, ""slug"" : null, ""hash"" : null, ""parameters"" : { }, ""account"" : null, ""repository"" : null, ""tag"" : null, ""digest"" : null, ""payloadConstraints"" : null, ""payload"" : null, ""attributeConstraints"" : null, ""branch"" : null, ""runAsUser"" : null, ""secret"" : null, ""subscriptionName"" : null, ""pubsubSystem"" : null, ""expectedArtifactIds"" : null, ""lastSuccessfulExecution"" : null, ""user"" : ""[anonymous]"", ""buildInfo"" : { ""building"" : false, ""fullDisplayName"" : ""image_common #1"", ""name"" : ""image_common"", ""number"" : 1, ""duration"" : 104184, ""timestamp"" : ""1518099305354"", ""result"" : ""SUCCESS"", ""artifacts"" : [ { ""fileName"" : ""build_info.yml"", ""displayPath"" : ""build_info.yml"", ""relativePath"" : ""build_info.yml"" } ], ""url"" : ""https://testjenkins.test.com/job/image_common/1/"", ""scm"" : [ { ""name"" : ""origin/master"", ""branch"" : ""master"", ""sha1"" : ""yyyyyy"" } ] }, ""properties"" : { ""image_name"" : ""test-image"", ""new_cluster_build"" : ""1"", ""service_git_commit"" : ""xxxxxxxx"", ""git_commit"" : ""yyyyyy"" } } } 2018-02-08 14:37:21.108 ERROR 2752 --- [0.0-8083-exec-6] c.n.s.k.w.e.GenericExceptionHandlers : [] Internal Server Error java.lang.IllegalArgumentException: Unrecognized field ""displayPath"" (class com.netflix.spinnaker.orca.pipeline.model.JenkinsTrigger$JenkinsArtifact), not marked as ignorable (2 known properties: ""relativePath"", ""fileName""]) at [Source: N/A; line: -1, column: -1] (through reference chain: com.netflix.spinnaker.orca.pipeline.model.JenkinsTrigger[""buildInfo""]->com.netflix.spinnaker.orca.pipeline.model.JenkinsTrigger$BuildInfo[""artifacts""]->java.util.ArrayList[0]->com.netflix.spinnaker.orca.pipeline.model.JenkinsTrigger$JenkinsArtifact[""displayPath""]) at com.fasterxml.jackson.databind.ObjectMapper._convert(ObjectMapper.java:3605) at com.fasterxml.jackson.databind.ObjectMapper.convertValue(ObjectMapper.java:3524) at com.netflix.spinnaker.orca.pipeline.util.ContextParameterProcessor.precomputeValues(ContextParameterProcessor.java:105) at com.netflix.spinnaker.orca.pipeline.util.ContextParameterProcessor.process(ContextParameterProcessor.java:68) at com.netflix.spinnaker.orca.pipeline.util.ContextParameterProcessor$process.call(Unknown Source) at com.netflix.spinnaker.orca.controllers.OperationsController.orchestrate(OperationsController.groovy:98) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133) at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97) at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827) at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738) at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85) at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970) at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872) at javax.servlet.http.HttpServlet.service(HttpServlet.java:661) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846) at javax.servlet.http.HttpServlet.service(HttpServlet.java:742) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at com.netflix.spinnaker.orca.web.config.WebConfiguration$1.doFilter(WebConfiguration.groovy:75) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:110) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:108) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at com.netflix.spinnaker.fiat.shared.FiatAuthenticationFilter.doFilter(FiatAuthenticationFilter.java:54) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at javax.servlet.FilterChain$doFilter.call(Unknown Source) at com.netflix.spinnaker.filters.AuthenticatedRequestFilter.doFilter(AuthenticatedRequestFilter.groovy:135) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:478) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:80) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:799) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1457) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745) ``` Echo Error log: ``` 2018-02-08 14:37:00.610 WARN 2723 --- [readScheduler-6] c.n.s.e.p.orca.PipelineInitiator : Triggering Pipeline(test, test-setup, f3f705c8-c92c-44d8-bc03-8b7d4fb15bd2) due to Trigger(jenkins, Jenkins, image_common, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null) 2018-02-08 14:37:00.613 INFO 2723 --- [readScheduler-6] c.n.s.e.p.monitor.GitEventMonitor : e = com.netflix.spinnaker.echo.model.Event@2cffebeb 2018-02-08 14:37:00.922 ERROR 2723 --- [ Retrofit-Idle] c.n.s.e.p.orca.PipelineInitiator : Retrying pipeline trigger, attempt 1/5 2018-02-08 14:37:02.141 INFO 2723 --- [ofit-/pipelines] c.n.s.echo.services.Front50Service : ---> HTTP GET http://0.0.0.0:8080/pipelines?restricted=false 2018-02-08 14:37:02.184 INFO 2723 --- [ofit-/pipelines] c.n.s.echo.services.Front50Service : <--- HTTP 200 http://0.0.0.0:8080/pipelines?restricted=false (42ms) 2018-02-08 14:37:02.186 INFO 2723 --- [ Retrofit-Idle] c.n.s.e.pipelinetriggers.PipelineCache : Refreshing pipelines 2018-02-08 14:37:05.974 ERROR 2723 --- [ Retrofit-Idle] c.n.s.e.p.orca.PipelineInitiator : Retrying pipeline trigger, attempt 2/5 2018-02-08 14:37:11.020 ERROR 2723 --- [ Retrofit-Idle] c.n.s.e.p.orca.PipelineInitiator : Retrying pipeline trigger, attempt 3/5 2018-02-08 14:37:12.142 INFO 2723 --- [ofit-/pipelines] c.n.s.echo.services.Front50Service : ---> HTTP GET http://0.0.0.0:8080/pipelines?restricted=false 2018-02-08 14:37:12.184 INFO 2723 --- [ofit-/pipelines] c.n.s.echo.services.Front50Service : <--- HTTP 200 http://0.0.0.0:8080/pipelines?restricted=false (42ms) 2018-02-08 14:37:12.185 INFO 2723 --- [ Retrofit-Idle] c.n.s.e.pipelinetriggers.PipelineCache : Refreshing pipelines 2018-02-08 14:37:16.069 ERROR 2723 --- [ Retrofit-Idle] c.n.s.e.p.orca.PipelineInitiator : Retrying pipeline trigger, attempt 4/5 2018-02-08 14:37:21.116 ERROR 2723 --- [ Retrofit-Idle] c.n.s.e.p.orca.PipelineInitiator : Error triggering pipeline: Pipeline(test, test-setup, f3f705c8-c92c-44d8-bc03-8b7d4fb15bd2) retrofit.RetrofitError: 500 at retrofit.RetrofitError.httpError(RetrofitError.java:40) ~[retrofit-1.9.0.jar:na] at retrofit.RestAdapter$RestHandler.invokeRequest(RestAdapter.java:388) ~[retrofit-1.9.0.jar:na] at retrofit.RestAdapter$RestHandler.access$100(RestAdapter.java:220) ~[retrofit-1.9.0.jar:na] at retrofit.RestAdapter$RestHandler$1.invoke(RestAdapter.java:265) ~[retrofit-1.9.0.jar:na] at retrofit.RxSupport$2.run(RxSupport.java:55) ~[retrofit-1.9.0.jar:na] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[na:1.8.0_101] at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[na:1.8.0_101] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) ~[na:1.8.0_101] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) ~[na:1.8.0_101] at retrofit.Platform$Base$2$1.run(Platform.java:94) ~[retrofit-1.9.0.jar:na] at java.lang.Thread.run(Thread.java:745) ~[na:1.8.0_101] ``` Looking forward for the fix for this issue." __label__enhancement Zoom level buttons Add ability to change the zoom level based on presses of the according menu buttons __label__enhancement tr 12-citation-md and 13-hosting-md Asignados dos episodios cortos a Hugo "__label__bug Upgrade script broknen when there is a default value in new column If default value is set to a column (string value with double quotes e.g. for guid column type), the generated upgrade script gets broken and must be edited manually in order to be accepted. **Plugins loaded:** PdfExport, PopulateDictionary, Printing, CsvExport, JsonExport, JavaScriptHighlighterPlugin, PopulateRandomText, PopulateScript, MultiEditorTextPlugin, MultiEditorDateTimePlugin, DbSqliteSystemData, HtmlExport, RegExpImport, DbPluginSqlite3, CsvImport, ScriptingTcl, XmlExport, DbAndroid, SqlEnterpriseFormatter, SqlExport, PopulateRandom, MultiEditorBoolPlugin, SqliteHighlighterPlugin, PopulateConstant, MultiEditorHexPlugin, MultiEditorNumericPlugin, DbSqlite2, DbSqliteCipher, PopulateSequence, MultiEditorTimePlugin, ScriptingSql, DbSqliteWx, MultiEditorDatePlugin, ScriptingQt, ConfigMigration **Version:** 3.1.1 **Operating System:** Windows 7, 64bit OS: Windows 7, 64bit Version: 3.1.1" "__label__enhancement Parsing OPDS 2.0 We still need to port OPDS 2.0 support from Go: https://github.com/opds-community/libopds2-go/tree/master/opds2 Since this is also useful for audiobooks, comics and maybe even Web Publications, we need to make sure that the code can ingest a single publication as well and not just a feed. This is needed anyway for OPDS (see #1 for OPDS 1.x). " __label__bug Aiming with the right mouse button causes attack direction bug... __label__enhancement add command and help usage add command and help usage __label__enhancement Get rid of old beacons Beacons that haven't been seen for a while should automatically be removed from `BeaconManager.beaconMap` to not fill up the memory. "__label__enhancement [Improvement] Allow to set kicked IP manually Hi, The network at my work is the following: 30 people share a single FTTH line distributed through 4 wifi repeaters. Unfortunately, the network very poorly configured. I'm not sure why for the moment (is it because the 4 repeaters shared the exact same name and network configuration? And/or is there a vlan system in place?), but when I use nmap/kickthemout, I do not see all the machines on the network, only a subset. Also, very strangely, I do not see the machines that are physically closer to me (and thus supposed to connect through the same repeater as I do). As a consequence, I cannot use kickthemout on a machine even if I know it is connected to the network and I know it's IP (since dhcp deamon distributes the same IPs to the sames machine/MAC day after day). I'm almost sure it's possible to ARP-spoof (is it really what kickthemout does?) an IP even if it is not registered on the network. So, would it be possible to add an option to kickthemout that would allow me to enter the IP I want to kick?" "__label__bug [TW-4] lack of a tty + defaultwidth breaks task burndown _steve rader says:_ I'm seeing the lack of a tty influence task burndown! I get the expected results inspecting the output. But wrong results when it gets piped to grep... <pre> $ for w in `seq 40 10 120`; do > echo -e ""$w\t\c"" ; task rc.defaultwidth=$w burndown.daily | grep Estimated > done 40 Find rate: 2.7/d Estimated completion: No convergence 50 Find rate: 3.9/d Estimated completion: 2/15/2011 (3 wks).7/d 60 Find rate: 3.6/d Estimated completion: 2/21/2011 (4 wks)x rate: 7.4/d 70 Find rate: 3.0/d Estimated completion: 3/7/2011 (6 wks) 80 Find rate: 3.4/d Estimated completion: 4/7/2011 (11 wks) 90 Find rate: 3.9/d Estimated completion: 5/10/2011 (3 mths) 100 Find rate: 3.5/d Estimated completion: 6/4/2011 (4 mths) 110 Find rate: 5.8/d Estimated completion: 6/3/2011 (4 mths) 120 Find rate: 6.3/d Estimated completion: 7/11/2011 (5 mths) </pre> The expected results is... <pre> Find rate: 6.4/d Estimated completion: 10/21/2015 (4.8 yrs) </pre>" "__label__question Getting log for specific file (question) Is there a way to get log for specific file? I managed to get log for the entire repo and from specific hash, but didn't find a way to do this for a file. The use case is to get and display the history of a file. If not supported, workarounds are welcome :)" __label__bug Support to pass element of N dimension array to a procedure **FOLLOWING #823** We first need to check coherence of Occurs/Array. See #220 and #221 "__label__bug [TW-32] unable to change annotations via task edit _Peter De Poorter says:_ <pre> ID Project Pri Due Active Age Description 153 home * 3d normal ubuntu,xubuntu very slow startup on old pc 16/10/2012-20:18:09 see dmesg 16/10/2012-20:18:29 startup takes approx. 1u45 16/10/2012-20:18:54 error ata1 link is slow to respond I want to change 1u45 to 1min45 via task edit but it fails $ task 153 edit vim part: # Annotations look like this: <date> -- <text> and there can be any number of them. # The ' -- ' separator between the date and text field should not be removed. # A ""blank slot"" for adding an annotation follows for your convenience. Annotation: 16/10/2012 -- see dmesg Annotation: 16/10/2012 -- startup takes approx. 1u45 Annotation: 16/10/2012 -- error ata1 link is slow to respond Annotation: 20/10/2012 -- Launching 'vi ""task.5771.153.task""' now... Editing complete. Edits were detected. Error: '16/10/2012' is not a valid date in the 'd/m/Y-H:N:S' format. Taskwarrior couldn't handle your edits. Would you like to try again? (yes/no) no Creation date modified. Start date modified. Why this error ? Why the messages regarding modified dates ? </pre>" __label__bug Screen tearing in full-screen __label__bug renderer.shadowMapEnabled = true causes glitches in chrome (not firefox) When setting ``` .js renderer.shadowMapEnabled = true ``` I get several errors in chrome and the canvas does not get rendered. In Firefox this is no issue. I tested it with three.js73. Here is the copy/paste from Chromes' console: https://gist.github.com/nylki/672d2f714c4b75b282dc#file-gistfile1-js "__label__enhancement Faster dependence checking: pruning After several iterations of non-parallel loop accesses that you have been collecting conflicts from, skip conflict checking from the rest of the loop iterations. " "__label__bug [TW-700] task done a little over zealous _John Florian on 2009-12-07T19:58:28Z says:_ Consider the following: <pre> $ task add do the landry Created task 214 $ task 214 do the laundry Task 214 ""do the landry"" - end was set to '12/7/2009' - description was changed from 'do the landry' to 'the laundry' - status was changed from 'pending' to 'completed' Are you sure? (yes/no/all) </pre> Bad example I realize, but ""do"" gets interpretted as done here where one is simpy trying to change the subject. Abbreviations are good, but this case yields the wrong result. I see two realy decent solutions: 1. introduce a new command that is required to change the subject (good: hard for user to get it wrong / bad: change in interface) 2. ignore the abbreviation when other, unexplained args are present (good: same ol' interface / bad: ?)" "__label__bug pop.mech dot notation bug with one_file_mode the error: ```matlab Warning: name of object to modify not found in populations or connections. > In dsApplyModifications>modify_specification (line 324) In dsApplyModifications (line 116) In dsWriteDynaSimSolver (line 144) In dsGetSolveFile (line 167) In dsCreateBatch (line 100) In dsSimulate (line 572) ``` dsWriteDynaSimSolver (line 144): `[~, first_mod_set] = dsApplyModifications([], mod_set{iMod}, varargin{:});` since the first arg is empty, it doesnt end up replacing the dot notation. unlike line 567 of dsSimulate: `model = dsApplyModifications(model,modifications_set{i}, varargin{:});` where dot notation is replaced since model is provided as 1st arg." "__label__bug metadata configuration Hello plink team, Thank you for the new software! I found an interesting bug: the numbers, ie masses of amino acids, linkers etc., are apparently in mDa and the decimal point is a comma. It looks weird, but it is not an issue; searches are working and the .ini files in \bin are correctly in Da and with a period. If one now adds e.g. a new linker over the metadata configuration option within the program, it kind of overwrites the .ini files in the \bin with the weird formatting (commata and in mDa), which basically leads to no identified spectra at all. One has to reinstall the program to get back the correct .ini file. The ""Region and Language"" format option on my computer is in English (United States) and the decimal symbol is a period. " "__label__enhancement inline single-statement functions that are called multiple times **Bug report or feature request?** feature request **ES5 or ES6+ input?** either **Uglify version (`uglifyjs -V`)** 3.1.6 **JavaScript input** From https://github.com/mishoo/UglifyJS2/pull/2427#issuecomment-341924721: Would be nice to inline single-statement functions that are called more than once if the function symbol is **solely** referenced via `AST_Call.expression`s. Would have to deep clone the original function. For example: ```js !function(){ function foo(x, y) { console.log(x + y); } foo(1, 2); foo(""hello"", ""world""); }(); ``` would be transformed into: ```js console.log(3); console.log(""helloworld""); ```" "__label__enhancement Building on aarch64 (enhancement) Building on aarch64 (arm64) currently doesn't work, because it's not implemented in `debughelper.cpp`." "__label__bug [APP SUBMITTED]: TypeError: argument 2 to map() must support iteration ### INFO **Python Version**: `2.7.9 (default, Sep 17 2016, 20:26:04) [GCC 4.9.2]` **Operating System**: `Linux-4.9.35-v7+-armv7l-with-debian-8.0` **Locale**: `UTF-8` **Branch**: [develop](../tree/develop) **Database**: `44.9` **Commit**: pymedusa/Medusa@c0f2ffe417e8075a26518969d9a563312c89115e **Link to Log**: https://gist.github.com/4bb40e4873197ef94e574fff9082495b ### ERROR <pre> 2018-01-24 14:35:16 ERROR Thread-16 :: [c0f2ffe] Exception generated: argument 2 to map() must support iteration Traceback (most recent call last): File ""/home/pi/Medusa/<a href=""../blob/c0f2ffe417e8075a26518969d9a563312c89115e/medusa/server/web/core/base.py#L280"">medusa/server/web/core/base.py</a>"", line 280, in async_call result = function(**kwargs) File ""/home/pi/Medusa/<a href=""../blob/c0f2ffe417e8075a26518969d9a563312c89115e/medusa/server/web/home/handler.py#L1051"">medusa/server/web/home/handler.py</a>"", line 1051, in pickManualSearch ep_objs.extend(series_obj.get_all_episodes(int(cached_result[b'season']))) File ""/home/pi/Medusa/<a href=""../blob/c0f2ffe417e8075a26518969d9a563312c89115e/medusa/tv/series.py#L613"">medusa/tv/series.py</a>"", line 613, in get_all_episodes sql_args.append(','.join(map(text_type, season))) TypeError: argument 2 to map() must support iteration </pre> --- _STAFF NOTIFIED_: @pymedusa/support @pymedusa/moderators " "__label__enhancement data.table? VEIN functions could include the dependency on data.table functions so that it produces faster estimations. This could imply in modification in all function but these modifications should be only internal, they must preserve the same arguments" __label__bug LY: Uneven start flag not closed ![image](https://user-images.githubusercontent.com/15198808/34895398-9d7826aa-f7f6-11e7-848a-8a7c72c6fa54.png) __label__question Reasonable doubt of code within BodyExecution.cpp ? I'm a bit worried about this kind of line: https://github.com/roboticslab-uc3m/teo-self-presentation/blob/6c7034140950b7b6908965f856cfd16c22befed0/programs/BodyExecution/BodyExecution.cpp#L279 "__label__bug Rotated or flipped objects bounding box is wrong Hello, I've noticed that Avocode exports assets (icons) with original position/rotate parameter despite the fact I've rotated or flipped object in Sketch. Best, Tomek " "__label__bug Atom Feed url in documentation **I'm submitting a ...** <!-- (check one with ""x"") --> - [x] bug report - [ ] feature request - [x] other (Please do not submit support requests here (below)) - [x] documenation The atom feed link point to an expired domain with a tons of advertisement redirections. https://github.com/h5bp/html5-boilerplate/blob/master/dist/doc/extend.md#atom http://www.atomenabled.org/developers/syndication/ <- proof " __label__bug Problem: CSV file not being added to METS metadata only AIP reingest workflow Just noticed that if I add a csv file to metadata only AIP reingest DC metadata isn't added to the METS file. Tried to add the CSV before and after normalization on am17x. Confirmed that this works in 1.6.1 (amdemo) "__label__bug Figure out the reason for fake signals For TOD 50: The signals look like ``` {640: [[9897.0, 9898.0], [53522.0, 53524.0], [57332.0, 57335.0], [78626.0, 78629.0], [84304.0, 84308.0], [96462.0, 96464.0], [106395.0, 106399.0], [115739.0, 115741.0], [140713.0, 140715.0], [150190.0, 150192.0], [162830.0, 162833.0], [165317.0, 165318.0], [173212.0, 173214.0], [175954.0, 175957.0], [177610.0, 177613.0], [180280.0, 180283.0], [181428.0, 181431.0], [183859.0, 183861.0], [191712.0, 191714.0]], 896: [[9897.0, 9898.0], [26282.0, 26285.0], [53522.0, 53524.0], [57332.0, 57335.0], [78626.0, 78629.0], [84304.0, 84308.0], [96462.0, 96464.0], [106395.0, 106399.0], [138828.0, 138831.0], [140712.0, 140715.0], [150190.0, 150192.0], [162831.0, 162833.0], [173212.0, 173215.0], [175954.0, 175957.0], [177610.0, 177613.0], [180280.0, 180283.0], [181429.0, 181430.0], [183859.0, 183861.0], [191713.0, 191714.0]], 323: [[10817.0, 10820.0], [116825.0, 116828.0], [127417.0, 127419.0], [129312.0, 129313.0], [134702.0, 134706.0], [134757.0, 134760.0], [138962.0, 138965.0], [151714.0, 151715.0], [153305.0, 153308.0], [153514.0, 153515.0], [154794.0, 154797.0], [158879.0, 158883.0], [159228.0, 159232.0], [160943.0, 160946.0], [168509.0, 168511.0], [181829.0, 181830.0], [189038.0, 189040.0], [191669.0, 191671.0]], 321: [[9897.0, 9898.0], [53522.0, 53524.0], [57332.0, 57335.0], [78626.0, 78629.0], [84304.0, 84308.0], [96462.0, 96464.0], [106395.0, 106399.0], [115739.0, 115741.0], [140713.0, 140715.0], [150190.0, 150192.0], [162830.0, 162833.0], [165317.0, 165318.0], [173212.0, 173214.0], [175954.0, 175957.0], [177610.0, 177613.0], [180280.0, 180283.0], [181428.0, 181431.0], [183859.0, 183861.0], [191712.0, 191714.0]], 64: [[9897.0, 9898.0], [26282.0, 26285.0], [53522.0, 53524.0], [57332.0, 57335.0], [78626.0, 78629.0], [84304.0, 84308.0], [96462.0, 96464.0], [106395.0, 106399.0], [138828.0, 138831.0], [140712.0, 140715.0], [150190.0, 150192.0], [162831.0, 162833.0], [173212.0, 173215.0], [175954.0, 175957.0], [177610.0, 177613.0], [180280.0, 180283.0], [181429.0, 181430.0], [183859.0, 183861.0], [191713.0, 191714.0]], 347: [[72242.0, 72243.0], [72562.0, 72564.0], [72617.0, 72619.0], [73337.0, 73341.0], [74894.0, 74897.0], [75642.0, 75643.0], [75806.0, 75808.0], [78152.0, 78154.0], [85566.0, 85569.0]], 387: [[10817.0, 10820.0], [116825.0, 116828.0], [127417.0, 127419.0], [129312.0, 129313.0], [134702.0, 134706.0], [134757.0, 134760.0], [138962.0, 138965.0], [151714.0, 151715.0], [153305.0, 153308.0], [153514.0, 153515.0], [154794.0, 154797.0], [158879.0, 158883.0], [159228.0, 159232.0], [160943.0, 160946.0], [168509.0, 168511.0], [181829.0, 181830.0], [189038.0, 189040.0], [191669.0, 191671.0]], 20: [[11096.0, 11100.0], [11309.0, 11312.0], [12802.0, 12803.0], [20814.0, 20816.0], [25814.0, 25815.0], [27719.0, 27720.0], [30880.0, 30883.0], [43959.0, 43962.0], [48513.0, 48516.0], [57127.0, 57129.0], [66802.0, 66804.0], [68793.0, 68794.0], [75720.0, 75723.0], [80296.0, 80299.0], [85582.0, 85585.0], [92049.0, 92051.0], [93283.0, 93284.0], [113085.0, 113086.0], [116716.0, 116718.0], [121466.0, 121469.0], [122668.0, 122669.0], [125212.0, 125215.0], [132019.0, 132021.0], [137739.0, 137743.0], [141941.0, 141945.0], [147375.0, 147377.0], [164357.0, 164359.0], [180597.0, 180599.0], [180639.0, 180641.0]], 596: [[11096.0, 11100.0], [11309.0, 11312.0], [12802.0, 12803.0], [20814.0, 20816.0], [25814.0, 25815.0], [27719.0, 27720.0], [30880.0, 30883.0], [43959.0, 43962.0], [48513.0, 48516.0], [57127.0, 57129.0], [66802.0, 66804.0], [68793.0, 68794.0], [75720.0, 75723.0], [80296.0, 80299.0], [85582.0, 85585.0], [92049.0, 92051.0], [93283.0, 93284.0], [113085.0, 113086.0], [116716.0, 116718.0], [121466.0, 121469.0], [122668.0, 122669.0], [125212.0, 125215.0], [132019.0, 132021.0], [137739.0, 137743.0], [141941.0, 141945.0], [147375.0, 147377.0], [164357.0, 164359.0], [180597.0, 180599.0], [180639.0, 180641.0]], 410: [[70521.0, 70523.0], [72617.0, 72619.0], [73338.0, 73340.0], [74894.0, 74896.0], [75642.0, 75643.0], [75806.0, 75807.0], [78468.0, 78470.0], [80696.0, 80699.0], [85529.0, 85533.0], [85566.0, 85569.0]], 155: [[70521.0, 70523.0], [72617.0, 72619.0], [73338.0, 73340.0], [74894.0, 74896.0], [75642.0, 75643.0], [75806.0, 75807.0], [78468.0, 78470.0], [80696.0, 80699.0], [85529.0, 85533.0], [85566.0, 85569.0]], 666: [[72242.0, 72243.0], [72562.0, 72564.0], [72617.0, 72619.0], [73337.0, 73341.0], [74894.0, 74897.0], [75642.0, 75643.0], [75806.0, 75808.0], [78152.0, 78154.0], [85566.0, 85569.0]]} ``` This is too many signals. One needs to dig into this tod and figure out what goes wrong. " "__label__bug Default skin crashes plugin ### What behaviour is observed: Default skin doesnt work. ChangeSkin dont load - mark as RED in plugin list ### What behaviour is expected: Nonpremium people without set skin gets default one ### Steps/models to reproduce: Plugin can't start with default skin in config. ### Plugin list: ChangeSkin, ProtocolLib - (Bungeecord) Essentials, Vault, ProtocolLib, ChangeSkin, WorldEdit, WorldGuard, (Spiggot) ### Environment description BungeeCord version git:BungeeCord-Bootstrap:1.12-SNAPSHOT:ca8f31b:1298 MySQL spigot 1.8.8 ### Plugin version or build number (don't write latest): 3.0 buld #54 ### Error Log: ``` [ChangeSkin] Error loading config. Disabling plugin... org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping in 'reader', line 12, column 1: default-skins: [] ^ expected <block end>, but found BlockSequenceStart in 'reader', line 13, column 5: - 73808511-bb53-442f-9e26-25af71 ... ^ at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:570) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:143) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:224) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:120) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:450) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at org.yaml.snakeyaml.Yaml.loadAs(Yaml.java:410) ~[server2.jar:git-Spigot-21fe707-e1ebe52] at net.md_5.bungee.config.YamlConfiguration.load(YamlConfiguration.java:91) ~[ChangeSkin.jar:?] at net.md_5.bungee.config.YamlConfiguration.load(YamlConfiguration.java:77) ~[ChangeSkin.jar:?] at com.github.games647.changeskin.core.ChangeSkinCore.loadFile(ChangeSkinCore.java:167) ~[ChangeSkin.jar:?] at com.github.games647.changeskin.core.ChangeSkinCore.load(ChangeSkinCore.java:62) ~[ChangeSkin.jar:?] at com.github.games647.changeskin.bukkit.ChangeSkinBukkit.onEnable(ChangeSkinBukkit.java:51) [ChangeSkin.jar:?] at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321) [server2.jar:git-Spigot-21fe707-e1ebe52] at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:340) [server2.jar:git-Spigot-21fe707-e1ebe52] at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:405) [server2.jar:git-Spigot-21fe707-e1ebe52] at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:357) [server2.jar:git-Spigot-21fe707-e1ebe52] at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:317) [server2.jar:git-Spigot-21fe707-e1ebe52] at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:414) [server2.jar:git-Spigot-21fe707-e1ebe52] at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:378) [server2.jar:git-Spigot-21fe707-e1ebe52] at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:333) [server2.jar:git-Spigot-21fe707-e1ebe52] at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:263) [server2.jar:git-Spigot-21fe707-e1ebe52] at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:525) [server2.jar:git-Spigot-21fe707-e1ebe52] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_91] ``` ### Configuration: default-skins: - 73808511-bb53-442f-9e26-25af71093582 restoreSkins: true instantSkinChange: true skinPermission: true cooldown: 0 mojang-request-limit: 600 server-blacklist: [] upload-accounts: [] auto-skin-update: -1 storage: driver: com.mysql.jdbc.Driver host: xxx.xxx.xxx.xxx port: 3306 database: skin2 username: xxx password: xxx proxies: " __label__question Exception while trying to deserialize String in Column Expression ``` Could not find value for column 'a': EL1021E: A problem occurred whilst attempting to access the property 'a': 'Exception while trying to deserialize String' ``` I have set following properties in deployment ``` app.test-sink.spring.cloud.stream.consumer.contentType=application/json app.test-sink.spring.cloud.stream.bindings.input.consumer.headerMode=raw app.test-sink.spring.cloud.stream.kafka.bindings.input.consumer.resetOffsets=true app.test-sink.spring.cloud.stream.kafka.bindings.input.consumer.startOffset=earliest app.test-sink.spring.cloud.stream.default.contentType=text/plain app.test-sink.spring.cloud.stream.bindings.input.consumer.configuration.value.deserializer=class org.apache.kafka.common.serialization.StringSerializer app.test-sink.spring.cloud.stream.bindings.input.consumer.configuration.key.deserializer=class org.apache.kafka.common.serialization.StringSerializer app.test-sink.spring.cloud.stream.bindings.input.consumer.configuration.value.serializer=class org.apache.kafka.common.serialization.StringSerializer app.test-sink.spring.cloud.stream.bindings.input.consumer.configuration.key.serializer=class org.apache.kafka.common.serialization.StringSerializer app.test-sink.spring.cloud.stream.bindings.input.consumer.useNativeEncoding=true ``` __label__bug Tag are Objects 'Tag' attribute comes back as an object type. https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html Not sure if they have to be list. "__label__question Centreon trendmicro iwsva - Disk Global - Status Unknown Not really an issue, juste a little fix. I manage to install and configure centreon_trendmicro_iwsva today, after some snmp tweak all my check are working except one. By default Disk Global template genrate command like ""/usr/lib/centreon/plugins/centreon_trendmicro_iwsva.pl --plugin=os::linux::snmp::plugin --mode=storage --hostname=IPADRESS --snmp-version='2c' --snmp-community='public' --snmp-timeout=10 --storage='.*' --name --regexp --display-transform-src='' --display-transform-dst='' --warning='80' --critical='90' --verbose"" I have ""Unknown option: warning at /usr/lib/centreon/plugins/centreon_trendmicro_iwsva.pl line 142."" response. If I edit manualy the command to remove critical and warning parameter, it's working like a charm. Maybe it's possible to change that on the repository ? " __label__bug New efivar version 30 breaks with gcc 4.9.x When building the updated efivar-30 with older gcc-4.9.2 it fails with this: ``` x86_64-onie-linux-uclibc-gcc-ar -cvqs libefivar.a dp.static.o dp-acpi.static.o dp-hw.static.o dp-media.static.o dp-message.static.o efivarfs.static.o error.static.o export.static.o guid.static.o guids.static.o guid-symbols.static.o lib.static.o vars.static.o sorry - this program has been built without plugin support /work/onie/build/user/x86_64-g4.9.2-lnx4.1.38-uClibc-ng-1.0.22/efivar/efivar-30/Make.rules:8: recipe for target 'libefivar.a' failed ``` Seems related to newer efivars using LTO (Link Time Optimizer) support. The fix looks to be to enable LTO support only for GCC version > 4.9.x. See this https://github.com/sudar/Arduino-Makefile/issues/456 "__label__bug Zoom extents Hi, Can you add ""zoom extents"" function in the viewer? I can't find objects for some cases, even though they exist in the viewer. Thank you. Dongyeop" "__label__enhancement Improve the ADALError codes to represent the http status properly Ref on the discussion with @iambmelt on #1065 Currently adal we don't have specific ADALError enum constant for every http status code or group like 4XX, we treat all status code (except for 200, 400, 401) as ADALError.SERVER_ERROR (""Server returned an error""), which is quite misleading for developers. We should update the ADALError and use proper error code for http status group. For example, For HTTP Status Codes - 200's are used for successful requests. - 300's are for redirections. - 400's are used if there was a problem with the request. - 500's are used if there was a problem with the server." "__label__enhancement Admin Items List page Admin should be able to see all the available items, update any item and create a brand new item to the list." "__label__bug Japanese / Chinese / EU characters in file names Hello, I am getting permission denied errors trying to copy files with Japanese, Chinese, EU characters using this azure-storage-fuse . If I upload those files manually to the blob storage in Azure they are accepted no problem. I can copy files without these characters fine with azure-storage-fuse . Do I have a configuration problem or is this a bug? Also Azure blob storage allows file names that are longer than 255 characters. azure-storage-fuse seems to be limited to 255 characters. Thanks" "__label__bug Ubuntu devel, M2Crypto undefined symbol sslv3_method #### Please, fill all relevant items: #### - [x] I have read CONTRIBUTING.rst - [x] I have tried with the latest pre-release version and I still can reproduce the issue. ##### Tribler version/branch+revision: ##### devel, latest jenkins build: https://jenkins.tribler.org/job/Build-Tribler_Ubuntu-64_devel/831/ ##### Operating system and version: ##### Ubuntu 16.04 ##### Expected behavior: ##### Start Tribler GUI ##### Actual behavior: ##### Fails to start, reporting error in GUI screen: ""/usr/local/lib/python2.7/dist-packages/M2Crypto/_m2crypto.so: undefined symbol: sslv3_method"" ##### Steps to reproduce the behavior: ##### Install debian package from Jenkins build. Start tribler Note: I have locally installed the package python-m2crypto, as I occasionally also try to build Tribler myself. ""python-m2crypto is already the newest version (0.22.6~rc4-1ubuntu1)."" ##### Relevant log file output: ##### cat tribler-gui-error.log ERROR 1517248853.53 run_tribler:43 /usr/local/lib/python2.7/dist-packages/M2Crypto/_m2crypto.so: undefined symbol: sslv3_method Traceback (most recent call last): File ""run_tribler.py"", line 25, in <module> from TriblerGUI.tribler_window import TriblerWindow File ""/usr/share/tribler/TriblerGUI/tribler_window.py"", line 24, in <module> from TriblerGUI.core_manager import CoreManager File ""/usr/share/tribler/TriblerGUI/core_manager.py"", line 25, in <module> from Tribler.Core.Session import Session File ""/usr/share/tribler/Tribler/Core/Session.py"", line 18, in <module> import Tribler.Core.permid as permid_module File ""/usr/share/tribler/Tribler/Core/permid.py"", line 8, in <module> from M2Crypto import Rand, EC, BIO File ""/usr/local/lib/python2.7/dist-packages/M2Crypto/__init__.py"", line 26, in <module> from M2Crypto import (ASN1, AuthCookie, BIO, BN, DH, DSA, EVP, Engine, Err, File ""/usr/local/lib/python2.7/dist-packages/M2Crypto/ASN1.py"", line 15, in <module> from M2Crypto import BIO, m2, util File ""/usr/local/lib/python2.7/dist-packages/M2Crypto/BIO.py"", line 10, in <module> from M2Crypto import m2, six, util File ""/usr/local/lib/python2.7/dist-packages/M2Crypto/m2.py"", line 30, in <module> from M2Crypto.m2crypto import * File ""/usr/local/lib/python2.7/dist-packages/M2Crypto/m2crypto.py"", line 26, in <module> _m2crypto = swig_import_helper() File ""/usr/local/lib/python2.7/dist-packages/M2Crypto/m2crypto.py"", line 22, in swig_import_helper _mod = imp.load_module('_m2crypto', fp, pathname, description) ImportError: /usr/local/lib/python2.7/dist-packages/M2Crypto/_m2crypto.so: undefined symbol: sslv3_method" __label__bug Existing comparison feedback sometimes doesn't load Only seems to happen when doing several comparisons (ex: instructor/teaching assistant comparing many answers) __label__bug Missing file `lib/index.js` for entry point __label__enhancement Add frameworkName + frameworkVersion config options We need a `frameworkName` and a `frameworkVersion` config option to set (and potentially overwrite whats [set by the agent automatically for supported frameworks](https://github.com/elastic/apm-agent-nodejs/blob/master/lib/instrumentation/modules/express.js#L8)). __label__enhancement remove xlink:href hack The hack from #1 is no longer needed as jsdom no longer drops the namespace. __label__bug fix rounding issues in ndi based on both ni AND ci "__label__bug WeasyPrint 0.42 gets stuck We are calling WeasyPrint via pandoc. With 0.42 and a certain input, the command never completes, but does not throw an error, causing [builds to timeout](https://travis-ci.org/greenelab/scihub-manuscript/builds/329491074#L1864). Downgrading from weasyprint 0.42 to 0.41 solves the issue: https://github.com/greenelab/scihub-manuscript/commit/5cb1245ca3e68c425b1364317e2496c17e20353c produced a [passing build](https://travis-ci.org/greenelab/scihub-manuscript/builds/329527648#L1421). The issue doesn't happen for [all inputs](https://travis-ci.org/greenelab/deep-review/builds/329523064#L1373) (pandoc manuscripts). See for example, this passing build with WeasyPrint 0.42. The command that fails [is](https://github.com/greenelab/scihub-manuscript/blob/a09d602ce3260746bd43476af4d2f58c1217d270/build/build.sh#L48-L62): ```sh pandoc \ --from=markdown \ --to=html5 \ --pdf-engine=weasyprint \ --pdf-engine-opt=--presentational-hints \ --filter=pandoc-fignos \ --filter=pandoc-eqnos \ --filter=pandoc-tablenos \ --bibliography=$BIBLIOGRAPHY_PATH \ --csl=$CSL_PATH \ --metadata link-citations=true \ --webtex=https://latex.codecogs.com/svg.latex? \ --css=webpage/github-pandoc.css \ --output=output/manuscript.pdf \ $INPUT_PATH ``` Any ideas on what the problem could be or how to better diagnose the issue?" "__label__bug [studio-ui] dropdown followed by a repeat group does not render properly in content form ### Expected behavior * Dropdown should have proper padding around it and should not ""clip"" into the repeat control ### Actual behavior <img width=""1079"" alt=""screen shot 2018-01-30 at 12 00 32 pm"" src=""https://user-images.githubusercontent.com/169432/35579864-ab7d5762-05b5-11e8-8923-bfcdce97e1ad.png""> <img width=""1095"" alt=""screen shot 2018-01-30 at 12 00 18 pm"" src=""https://user-images.githubusercontent.com/169432/35579944-e8e1598c-05b5-11e8-87ef-7c8bfb8c9333.png""> ### Steps to reproduce the problem * Create a simple form definition as shown above * Open form * Note rendering defect ### Log/stack trace (use https://gist.github.com) ### Specs Studio Version Number: 3.1.0-SNAPSHOT-0fe618 Build Number: 0fe618ef33e5f9a1593a5555b3efcc1bc7276641 Build Date/Time: 01-30-2018 11:12:20 -0500 #### Browser Chrome" __label__enhancement SQL frontend For the purpose of benchmarks and perhaps a use case would be nice to have an SQL frontend. This could be a SQL to Datalog translator or even better SQL to RAM frontend. "__label__enhancement Provide user feedback for SQLite file error ### Description When opening a SQLite file that is incompatible with AboutCode Manager, no feedback is provided to the user that there is an error. This occurs when ABCM's data schema has changed and a SQLite file that was created with a different schema in an older version of ABCM is re-opened. Providing a dialog message would help the user know an error has occurred. ### Steps to reproduce 1. Import a scan into v2.30 of AboutCode Manager. 2. Choose a SQLite file name to save. 3. Download and open v2.4.0 of AboutCode Manager. 4. Open the SQLite file create from step 2. **Expected behavior** I would expect that feedback is provided to the user (i.e. alert dialog) when an error occurs because of an incompatible SQLite file. **Actual behavior** The error is logged in the Console tab of Developer Tools. Depending on the data schema change, some data may load in the Dashboard Summary. No information is shown in the Table View. **Reproduces how often:** Whenever data schema changes between different versions of ABCM. ### Errors in the Developer Tools <img width=""1440"" alt=""screen shot 2018-02-02 at 3 15 04 pm copy"" src=""https://user-images.githubusercontent.com/4239800/35759325-c24c7bce-082d-11e8-8319-1ff45d369ff4.png""> <img width=""1437"" alt=""screen shot 2018-02-02 at 3 22 07 pm copy"" src=""https://user-images.githubusercontent.com/4239800/35759329-c5ab8bb6-082d-11e8-92aa-9df15a91f941.png""> ### System configuration **Operating System**: MacOS **AboutCode Manager Version**: <= v 2.4.0 " "__label__bug Providers view problem When I tap on a service category on Providers top view it takes me to the Services view displaying website with providers tab open. ![screenshot_20180202-115612](https://user-images.githubusercontent.com/4195311/35745231-86f01de6-0810-11e8-8b67-a3a16861c648.png) Please create separate view for this under Providers, this will also allow the back button to work properly (currently takes you to Services top view)" "__label__bug (minor) Indexes and Triggers sidebar menu item does not respond on dblcklick _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2849 Originally created at: Thu Apr 16 23:53:30 2015 Originally last updated at: Thu Apr 16 23:53:30 2015 [usability bug] When you dblclick on the column name in the sidebar under Table-Columns-[Column Name], It throws column settings window and opens table structure view. Nothing happens when you click on the Triggers or Indexes icon which feels strange\n\n**Operating system:**\nMac OS X 10.10 Yosemite\n\n**Version:**\n3.0.5" __label__enhancement Generalized Cone Overlap Queries Create basic overlap tests with all other shapes. Useful things to Google: Separating axis theorem. Normal force. "__label__bug Limit max chars length in breadcrumbs When tournament title is big, layout break ![capture d ecran 2018-02-01 a 21 08 29](https://user-images.githubusercontent.com/5855577/35700751-2b2c5eec-0794-11e8-8ab4-a3de53979c79.png) " "__label__bug create form returns rating as a word (""option3"") instead of a number (3) " "__label__enhancement Fracture: Support asymetric StimPlan fractures Import asymmetric fractures, and handle it throughout Resinsight" "__label__bug Paddle SparseRowCpuMatrix::addTo SIGSEGV when width of matrix cannot be divided by 32. The log message shows below. ```text [WARNING 2017-02-17 17:31:41,513 layers.py:1252] NOTE: the gru memory layer's size is set by previous input layer, and should be input size / 3. Set size explicitly will be ignored. [INFO 2017-02-17 17:31:41,516 networks.py:1466] The input order is [bidword_seq, label] [INFO 2017-02-17 17:31:41,516 networks.py:1472] The output order is [__cost_0__] I0217 17:31:41.518110 26649 Trainer.cpp:125] ignore sparse_remote_update=true due to --local=true I0217 17:31:41.518137 26649 Trainer.cpp:173] trainer mode: SgdSparseCpuTraining I0217 17:31:55.190280 26649 PyDataProvider2.cpp:243] loading dataprovider dataprovider::process [INFO 2017-02-17 17:31:56,881 dataprovider.py:20] dict len : 1972305 I0217 17:31:56.881968 26649 PyDataProvider2.cpp:243] loading dataprovider dataprovider::process [INFO 2017-02-17 17:31:58,100 dataprovider.py:20] dict len : 1972305 I0217 17:31:58.100997 26649 GradientMachine.cpp:135] Initing parameters.. I0217 17:32:31.008913 26649 GradientMachine.cpp:142] Init parameters done. I0217 17:32:32.164254 3860 ThreadLocal.cpp:40] thread use undeterministic rand seed:3861 *** Aborted at 1487323962 (unix time) try ""date -d @1487323962"" if you are using GNU date *** PC: @ 0x798110 paddle::simd::internal::addToImpl() *** SIGSEGV (@0x0) received by PID 26649 (TID 0x7f41619ea700) from PID 0; stack trace: *** @ 0x7f46ad8be160 (unknown) @ 0x798110 paddle::simd::internal::addToImpl() @ 0x78c9ed paddle::SparseRowCpuMatrix::addTo() @ 0x70b117 paddle::TrainerThread::mergeGradSparse() @ 0x70b58b paddle::TrainerThread::mergeCpuGradients() @ 0x70bda7 paddle::TrainerThread::backward() @ 0x70c02d paddle::TrainerThread::computeThread() @ 0x7f46acbd28a0 execute_native_thread_routine @ 0x7f46ad8b61c3 start_thread @ 0x7f46ac34312d __clone /home/work/yangyaming/programs/paddle_internal_release_tools/idl/paddle/output/bin/paddle_local: line 109: 26649 Segmentation fault ${DEBUGGER} $MYDIR/../opt/paddle/bin/paddle_trainer ${@:2} ``` The buggy code is [here](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/math/SparseRowMatrix.cpp#L183). This bug because `simd:: addTo` method uses plain `_mm256_load_ps` instruct, the input buffer must be aligned by 32. If matrix dimension cannot be divided by 32. It will cause SIGSEGV. The possible fixes could be. ```cpp dest = dest.rowBuf(id) local = getLocalRow(i) while dest % 32 !=0: *dest += *local ++dest ++local simd::addTo(dest, local, this->width_); ```" "__label__enhancement Do MDS in SEER from dist mat, or take previous MDS Remove kmds" "__label__bug Unable to pass params on web In order to get this library working on web, I've copied `BrowserAppContainer.js` directly from the react navigation website source code as instructed to do so via several other issue threads. I've finally got it working, but when I navigate to a screen and pass a params object into the `navigation.navigate` method, the params are not showing up on the destination screen: ```js // origin screen navigation.navigate(SOME_SCREEN, {some: 'params'}); // destination screen console.log(navigation.state.params) // undefined ``` Is it possible to pass `params` on websites? If so, how? Is there an additional tweak that I need to make to [`BrowserAppContainer.js`](https://github.com/react-community/react-navigation/blob/master/website/src/BrowserAppContainer.js) to make this happen? " __label__bug Change the address and location Change to address and map location in the FindUs.html to CAMT. You can simply generate a map using https://www.maps.ie/create-google-map/. The coordinate is 18.8004537 and 98.95040319999998 "__label__question Working great for me, but no run button for another user I hope that all my questions and issues are useful testing rather than just super annoying. I've been using Mass Action Scheduler very successfully at several orgs, and this week showed another user how to use a config I had set up. He doesn't see the run button, even though he has the same user profile that I do. I assume there's a Visualforce component somewhere that he needs access to, but I can't figure out what and where? Thanks so much, Anna " "__label__enhancement Improving Orientation Mapping I've spent some time on this recently, and I think we now have a far more correct implementation. The next steps are as I see it: ~~1a)~~ Refactoring the template library in such a way as to store the relevant data for correlate (at the moment `pattern.calibrated_coordinates` and `pattern.intensities`) and prevent these operations being tackled for each and every image. ~~1b)~~ Removing some of the internal safeguards from correlate, for example: `in_bounds = np.product((pixel_coordinates > 0)*(pixel_coordinates < shape[0]), axis=1)` checks that each template peaks lies within bounds of the image, which seems like a good idea. Except that if they don't an error is thrown, which in my opinion is sensible behavior. Reciprocal radius (generating the library) should be such that all peaks land within the image, if this isn't the case it's likely you'll generate poor results as it is. 2x) Making `matching_results` smarter, probably by converting Euler to cubochoric. This would allow us to calculate the distances between various results 'by eye'. texpy make be the saving grace here. ~~3experimental)~~ Some improvement on the matching formulae. Either for speed or accuracy. For example you can drop the image normalization ~~if you don't need to do reliability work.~~ Anyway, updates and thoughts are going to be here going forward. Probably starting with a profiling of the current code." "__label__question gen-io: simple_message extension, or wrap existing fieldbuses Currently, three alternatives are considered for inclusion in the generic robot IO REP: **1) Binary protocol _and_ ROS API**: extend the `simple_message` protocol with new IO related message structures (read, write, stream) and define a ROS API that layers on top of that extension and uses the new messages to implement the API. Main advantage(s): software only solution: no extra hardware required for controller or PC. Controller is in full control over execution of IO commands (beneficial for synchronisation of IO with motion for instance). Semantics of IO interface fully defined by ROS-I protocol. Main disadvantage(s): software only solution: large implementation and maintenance effort for controller driver authors. Yet another (incompatible) standard for remote IO. **2) ROS API only**: only define a generic ROS IO API, and wrap already existing hardware for the various Fieldbuses (profinet, profibus, ethernet/ip, etc through Anybus fi) with a thin layer which implements that API. Main advantage(s): no implementation effort for controller driver authors. Many controllers support Fieldbuses out-of-the-box (mature support, standard configuration interfaces on controllers, mfg supported). Fieldbus support usable outside ROS-I robot controller domain (generic ROS usage, process control, etc). Main disadvantage(s): additional hardware required on both PC and controller (introduces assumption on availability of Fieldbus hardware in all target platforms). API implementation as good as Fieldbus interface allows (different semantics). No reusable _generic IO client_. Synchronisation of execution of trajectories and IO commands potentially harder. **3) Hybrid**: define the generic IO ROS API, and allow implementations on top of both 'backends': the extended `simple_message` protocol, as well as existing Fieldbus hardware. Main advantage(s): adv of options 1 & 2. Flexibility: no Fieldbus hardware _required_, but support is there. Single ROS API for both backends. Main disadvantage(s): disadv of options 1 & 2, depending on chosen backend. Extra implementation effort (both controller drivers _and_ Fieldbus wrappers). Extended `simple_message` provides another set of potentially differing semantics when compared with Fieldbuses. --- This ticket will be used to gather arguments in favour or against these alternatives and/or any other options. In addition, any potential issues that reviewers might identify arising from the choice for a particular alternative should be posted here. " __label__bug Incorrect Squiz.WhiteSpace.ControlStructureSpacing.NoLineAfterClose error between catch and finally statements The following error was recorded under Squiz.WhiteSpace.ControlStructureSpacing.NoLineAfterClose ```sh 449 | ERROR | [x] No blank line found after control structure (Squiz.WhiteSpace.ControlStructureSpacing.NoLineAfterClose) ``` The code is a `try/catch/finally` block with a set of `if` control structures inside the catch. link to code section: https://github.com/joomla-framework/console/blob/13a8498930831b88c5ece0327a1c46e331a54fb8/src/Application.php#L390-L466 The error occurs at the `catch` close bracket before the `finally` keyword I believe the Expected result is no error for this code "__label__bug interrupt of long run: panic bug ``` 07:45:56 W http.go:667> Parsed non ok code 503 (HTTP/1.1 503) 07:45:56 W http.go:667> Parsed non ok code 503 (HTTP/1.1 503) 07:45:56 W http.go:667> Parsed non ok code 503 (HTTP/1.1 503) 07:45:56 W http.go:667> Parsed non ok code 503 (HTTP/1.1 503) 07:45:56 W http.go:667> Parsed non ok code 503 (HTTP/1.1 503) 07:48:33 I uihandler.go:426> UI: GET /fortio/?stop=Stop&runid=43 HTTP/1.1 216.239.45.130:55783 () 07:48:33 C uihandler.go:153> Stop request from 216.239.45.130:55783 for 43 07:48:33 I periodic.go:499> T009 ended after 1h24m36.175139994s : 50762 calls. qps=10.000048973893362 07:48:33 I periodic.go:499> T005 ended after 1h24m36.175179648s : 50762 calls. qps=10.000048895775109 07:48:33 I periodic.go:499> T007 ended after 1h24m36.175199914s : 50762 calls. qps=10.000048855851155 07:48:33 I periodic.go:499> T006 ended after 1h24m36.17520971s : 50762 calls. qps=10.000048836553066 07:48:33 I periodic.go:499> T002 ended after 1h24m36.176164715s : 50762 calls. qps=10.000046955196641 07:48:33 I periodic.go:499> T008 ended after 1h24m36.176496053s : 50762 calls. qps=10.000046302462135 07:48:33 I periodic.go:499> T003 ended after 1h24m36.180292916s : 50762 calls. qps=10.000038822663623 07:48:33 I periodic.go:499> T000 ended after 1h24m36.181708568s : 50762 calls. qps=10.000036033840098 07:48:33 I periodic.go:499> T001 ended after 1h24m36.181749501s : 50762 calls. qps=10.000035953202428 07:48:33 I periodic.go:499> T004 ended after 1h24m36.184033277s : 50762 calls. qps=10.00003145418467 07:48:33 http: panic serving 172.10.234.41:51533: close of closed channel goroutine 6673 [running]: net/http.(*conn).serve.func1(0xc4202620a0) /usr/lib/go-1.8/src/net/http/server.go:1721 +0xd0 panic(0x8c0fc0, 0xc4205eeae0) /usr/lib/go-1.8/src/runtime/panic.go:489 +0x2cf istio.io/fortio/periodic.(*RunnerOptions).Abort(0xc42025a780) /home/ldemailly/go/src/istio.io/fortio/periodic/periodic.go:233 +0x62 istio.io/fortio/fhttp.RunHTTPTest(0xc420012380, 0xc420072410, 0x0, 0x0) /home/ldemailly/go/src/istio.io/fortio/fhttp/httprunner.go:156 +0xdf5 istio.io/fortio/ui.Handler(0xb93400, 0xc4200122a0, 0xc4200d4500) /home/ldemailly/go/src/istio.io/fortio/ui/uihandler.go:294 +0xc12 net/http.HandlerFunc.ServeHTTP(0x976648, 0xb93400, 0xc4200122a0, 0xc4200d4500) /usr/lib/go-1.8/src/net/http/server.go:1942 +0x44 net/http.(*ServeMux).ServeHTTP(0xbd1b60, 0xb93400, 0xc4200122a0, 0xc4200d4500) /usr/lib/go-1.8/src/net/http/server.go:2238 +0x130 net/http.serverHandler.ServeHTTP(0xc4202380b0, 0xb93400, 0xc4200122a0, 0xc4200d4500) /usr/lib/go-1.8/src/net/http/server.go:2568 +0x92 net/http.(*conn).serve(0xc4202620a0, 0xb93c80, 0xc420672080) /usr/lib/go-1.8/src/net/http/server.go:1825 +0x612 created by net/http.(*Server).Serve /usr/lib/go-1.8/src/net/http/server.go:2668 +0x2ce ``` On page: ``` Up for 27h28m14.8s (since Wed Feb 7 02:55:42 2018). 1M 100qps ing-f2-f1 35.199.14.248/fortio2/fortio/fetch/echosrv1:8080/echo Running load test... Results pending... Interrupt Starting at 100 qps with 10 thread(s) [gomax 2] : exactly 1000000, 100000 calls each (total 1000000 + 0) Ended after 1h24m36.184069079s : 507620 calls. qps=100 Sleep times : count 507620 avg 0.071686248 +/- 0.06425 min -2.920981178 max 0.099712334 sum 36389.3734 Aggregated Function Time : count 507620 avg 0.023398227 +/- 0.02961 min 7.4395e-05 max 3.02076883 sum 11877.4082 # range, mid point, percentile, count >= 7.4395e-05 <= 0.001 , 0.000537198 , 0.00, 10 > 0.001 <= 0.002 , 0.0015 , 0.00, 8 > 0.002 <= 0.003 , 0.0025 , 0.02, 73 > 0.003 <= 0.004 , 0.0035 , 0.07, 265 > 0.004 <= 0.005 , 0.0045 , 0.12, 243 > 0.005 <= 0.006 , 0.0055 , 0.25, 659 > 0.006 <= 0.007 , 0.0065 , 0.39, 713 > 0.007 <= 0.008 , 0.0075 , 0.53, 710 > 0.008 <= 0.009 , 0.0085 , 0.93, 2028 > 0.009 <= 0.01 , 0.0095 , 2.05, 5688 > 0.01 <= 0.011 , 0.0105 , 4.30, 11449 > 0.011 <= 0.012 , 0.0115 , 7.85, 18020 > 0.012 <= 0.014 , 0.013 , 18.76, 55382 > 0.014 <= 0.016 , 0.015 , 33.19, 73246 > 0.016 <= 0.018 , 0.017 , 47.12, 70708 > 0.018 <= 0.02 , 0.019 , 57.92, 54796 > 0.02 <= 0.025 , 0.0225 , 76.14, 92513 > 0.025 <= 0.03 , 0.0275 , 85.62, 48098 > 0.03 <= 0.035 , 0.0325 , 90.28, 23693 > 0.035 <= 0.04 , 0.0375 , 92.90, 13265 > 0.04 <= 0.045 , 0.0425 , 94.45, 7904 > 0.045 <= 0.05 , 0.0475 , 95.56, 5623 > 0.05 <= 0.06 , 0.055 , 97.09, 7764 > 0.06 <= 0.07 , 0.065 , 98.02, 4691 > 0.07 <= 0.08 , 0.075 , 98.59, 2920 > 0.08 <= 0.09 , 0.085 , 98.96, 1889 > 0.09 <= 0.1 , 0.095 , 99.19, 1171 > 0.1 <= 0.12 , 0.11 , 99.44, 1266 > 0.12 <= 0.14 , 0.13 , 99.59, 769 > 0.14 <= 0.16 , 0.15 , 99.69, 498 > 0.16 <= 0.18 , 0.17 , 99.75, 279 > 0.18 <= 0.2 , 0.19 , 99.77, 134 > 0.2 <= 0.25 , 0.225 , 99.81, 183 > 0.25 <= 0.3 , 0.275 , 99.83, 92 > 0.3 <= 0.35 , 0.325 , 99.84, 80 > 0.35 <= 0.4 , 0.375 , 99.86, 56 > 0.4 <= 0.45 , 0.425 , 99.87, 53 > 0.45 <= 0.5 , 0.475 , 99.88, 82 > 0.5 <= 0.6 , 0.55 , 99.93, 239 > 0.6 <= 0.7 , 0.65 , 99.97, 221 > 0.7 <= 0.8 , 0.75 , 99.99, 111 > 0.8 <= 0.9 , 0.85 , 100.00, 12 > 0.9 <= 1 , 0.95 , 100.00, 1 > 1 <= 2 , 1.5 , 100.00, 9 > 3 <= 3.02077 , 3.01038 , 100.00, 6 # target 50% 0.0185332 # target 75% 0.0246867 # target 90% 0.0346953 # target 99% 0.0915867 # target 99.9% 0.538234 Code -1 : 10 (0.0 %) Code 200 : 501723 (98.8 %) Code 503 : 5887 (1.2 %) Response Header Sizes : count 507620 avg 164.01283 +/- 17.78 min 0 max 185 sum 83256194 Response Body/Total Sizes : count 507620 avg 166.43754 +/- 5.049 min 0 max 227 sum 84487022 ```" __label__enhancement Publish Docker image from travis build "__label__question Printing Gridster Item Does anyone have any suggestion regarding how the printing should be done? I am using the gridster2 in my application as a custom-made dashboard, and I want the user to be able to print the items, like one item per page." "__label__bug PoR checks are done too early on orphans `CheckBlock` validates PoR rewards and fail if the numbers don't match the expected values. This is called from `ProcessBlock` before connecting the block. The problem is that this is also done before orphan checks, which can cause nodes to reject blocks if they haven't received the parent yet. The PoR validation has to be done when connecting the block, after it has passed the orphan checks. See: https://github.com/gridcoin/Gridcoin-Research/blob/c244650f56f6a47c26031da1886d0a5c18429ab1/src/main.cpp#L4803 https://github.com/gridcoin/Gridcoin-Research/blob/c244650f56f6a47c26031da1886d0a5c18429ab1/src/main.cpp#L3984 This might be why we fork so often." "__label__bug Can I generate a bib from BBT starting with a list of citations? - [x] I am on the latest release of BBT and Zotero - [x] I am posting a single question, bug or feature request - [x] I have included a descriptive subject of the problem - [x] I am available for follow-up questions and testing # Bug classification Question ## Non-export problems with BBT Is it possible to somehow take a list of citation keys (that I could extract from my Latex manuscript) and push them at Zotero + BBT to create a collection for that set of citation keys? I'm slowly training myself to use Zotero + BBT, but I'm not quite sure how I export from it just the citations I need for my manuscript. If it helps answer my question, I'm using Emacs as the editor, and I know enough emacs lisp, perl, python, etc. that I could extract a list of the citation keys from the document myself, if necessary. Thanks! " __label__enhancement Integrate Watson's API for speech recognition / synthesis "__label__bug Implement buckets with different sizes On training time the training data should be ordered from shorten to larger, and should be fitted into different buckets of different sizes to minimize the amount of padding." "__label__bug Multiselect does not sync ngModel with data. ## I'm submitting a... * Bug report <!-- Please search for a similar issue before you submit a bug report. --> ## Current behavior Initially ngModel binding is not updated when data arrives. ## Expected behavior It should update ngModel when data arrives. ## Minimal reproduction of the problem with instructions [Open this url](https://plnkr.co/edit/yydrbn5G1z1U6YErBTI4?p=preview) Package versions: <!-- Paste the output from ""npm ls --depth 0"" in the code block below. Omit this step if the problem is reproducible on our demo site. --> ``` v1.5.0 ``` <!-- Add any additional information that might be relevant. --> " "__label__bug [TW-376] pri_sort.t failure _Jakub Wilk on 2014-01-08T10:48:24Z says:_ I've seen this failure on a few Debian autobuilders: <pre> # /build/task-9AAHpc/task-2.3.0~beta2/test/pri_sort.t 1..34 ok 1 - Created pri.rc not ok 2 - pri H !< H # Failed test 'pri H !< H' # at /build/task-9AAHpc/task-2.3.0~beta2/test/pri_sort.t line 52. # 'Using alternate .taskrc file /build/task-9AAHpc/task-2.3.0~beta2/obj/test/pri.rc # # ID Pri Description # -- --- ----------- # 2 M M # 3 L L # 4 _ # # 3 tasks # ' # matches '(?^:H)' </pre> There's an unexpected match because the build directory name (which is included in the ""Using alternate .taskrc file ..."" message), contained the letter H. Please apply the attached patch to fix the failure." "__label__bug Sync mutt with offlineimap local folders. I'm seeing a little bug with my current setup. Although everything is pretty much functioning as I would expect, I'm seeing this strange artifact: ![offlineimap](https://user-images.githubusercontent.com/7573542/31350571-8c657224-acdc-11e7-9e58-11550100dd17.gif) That is, the number of messages in my All Mail folder is different depending on whether I've opened that folder, or I've opened the INBOX. On the Gmail web interface, All mail says I have 41,037 emails. My guess is that this is something to do with the fact that I'm using motmuch and offlineimap, but still have my folder set to Gmail's imap address in my configuration." "__label__bug Action confirmation is blank <img width=""724"" alt=""luke-sc-2018-01-17-12h-25m-53s"" src=""https://user-images.githubusercontent.com/4986634/35065260-9832faba-fb81-11e7-98c8-0dddbd13f3fa.png""> When clicking to upvote or leave a comment I get a dialogue box that looks like the above the only option is to cancel it, and the action does not go through. Using 0.6.1 on Mac. " "__label__bug Behaviour exception when sending a behaviour command to the simulated robot Firstly, both Simspark server and a monitor, either Simspark monitor or Roboviz need to be running in the VM. To send a behaviour command to simswift, I used rUNSWift/build-release/robot/runswift -s WalkTest. Then the robot fell down and tried to get up several times with continuous error messages in the terminal. <img width=""1110"" alt=""untitled"" src=""https://user-images.githubusercontent.com/20898972/35867301-8e3bf7fa-0bad-11e8-8461-24c33947c352.png""> Although all behaviour files are in image/home/nao/data/behaviours, the message above shows that either no enough arguments for the string or no module in role or skill." "__label__enhancement Password Security Options Password Length, Strength " __label__enhancement [TW-822] Expose import.txt command _Paul Beckingham on 2009-08-23T11:45:08Z says:_ "__label__enhancement [TW-1360] color.until directive missing _David Patrick on 2014-06-30T01:21:23Z says:_ There is currently no color directive for ""color.until="" as there is a ""color,scheduled="". The until:<date> attribute is a potent one, and will make your tasks self-destruct, so a color-cue for ""until:"" would be a good thing. " "__label__bug @RequiresNonNull and field visibilty ``` Hi, from what I gather @RequiresNonNull should be enforced by the nullness checker but I can't get it to work. I have this (condensed) test case that produces no errors for these classes, only warnings about missing documentation: class ClassA { @Nullable private String value = null; @RequiresNonNull(""value"") public String getValue() { return value; } } public class Tester { public static void main(String[] args) { ClassA a = new ClassA(); a.getValue(); } } No error is reported even with @MonotonicNonNull private String value; which is what I had in the beginning, but then I tried and noticed that it doesn't work even with the code above that explicitly sets the field to null. I'm using version 1.8.9 with NetBeans 8.0.2 x64, Ant 1.9.4 and the javac included in JDK 1.8.0_u25 x64 on Windows 8. I pass these options to the compiler: -version -Xlint:all -Xdoclint:all My ant target is attached. The nullness checker seems to work fine otherwise, I can see various errors for other classes that seem sensible and I already have added some annotations to eliminate errors. So I think that the issue, if there's any, is related to the particular annotations used in the sample above. ``` Original issue reported on code.google.com by `karlsand...@gmail.com` on 11 Jan 2015 at 9:22 Attachments: - [Ant Task.xml](https://storage.googleapis.com/google-code-attachments/checker-framework/issue-391/comment-0/Ant Task.xml) " "__label__bug Unusual text wrapping on tutorial pages. **Summary** ````<li>```` elements do not wrap in the same position as ````<p>```` elements on a tutorial pages. **Expected Behaviour** List elements should wrap consistently with other body content. **Actual Behaviour** List elements wrap differently, please see ""Flash"" item on the list below: <img width=""1114"" alt=""screen shot 2018-02-01 at 18 22 30"" src=""https://user-images.githubusercontent.com/18007258/35695713-43802b52-077d-11e8-9bd6-7f25e10b5dfe.png""> " "__label__enhancement Add search history Search terms from earlier searches could be stored and displayed when you perform a new search. (that's a user request). Funny enough, I had another user write to us asking specifically that we do not store article history from one session to the next. I guess we could add a tick box to get that feature on/off (Wikimed beta tester feedback)" __label__enhancement HTML Input Disabeld Include an option to disable input. This will require management (to then enable) the input.. hmm! "__label__bug editors clear and other components disappear on save sometimes <img width=""1421"" alt=""screen shot 2018-01-09 at 7 31 55 pm"" src=""https://user-images.githubusercontent.com/14132409/34754634-fa1804be-f58c-11e7-86fc-d4632f58f100.png""> " __label__enhancement [Backend] Improved Password Storage # Task Hash the input password with SHA-3 and salt using a randomly generated string. Remove the salt input from the user. "__label__enhancement Command simplified In addition to current command, add : * !u as !up * !d as !down * !l as !left * !r as !right " __label__bug blog page title changes according to the last post ![11111111111111111](https://user-images.githubusercontent.com/26008574/29362346-42bcead4-8294-11e7-8915-11cb2f28a994.png) "__label__bug CVE-2009-4112 still exists (after 8 years) Due to the migration of cacti development to github, one old bug that I care a bit about got lost. CVE-2009-4112¹ still exists: > Cacti 0.8.7e and earlier allows remote authenticated administrators to gain privileges by modifying the ""Data Input Method"" for the ""Linux - Get Memory Usage"" setting to contain arbitrary commands. The issue is of course broader, as I can create a new Data Input Method, I don't need to change an existing one. I find suggestions² that at the time the item was reported that cacti developers (at least one) were considering implementing a whitelist as a solution. I also find suggestions³ that this issue would be considered during design of 0.8.8, but that ship has sailed long time ago. I do recognize that fixing this issue is difficult due to the design and philosophy of Data Input Methods. But maybe an (optional) whitelist could be implemented to only allow commands that are stored by the system administrator (via a configuration file on the file system). I.e. if the file is there, whitelisting is effective, and if it is not, than all commands are allowed. The reason why I post this issue is because of recent other security issues (#1057 and #1066) in this tracker. It seems that as long as this old issue isn't fixed, fixing the other issues is not really improving security. ¹ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4112 ² https://security-tracker.debian.org/tracker/CVE-2009-4112 (in the notes) ³ http://www.securityfocus.com/archive/1/archive/1/508129/100/0/threaded (bottom of the page) " "__label__bug interactive mode not working properly in version next In version next, when user input is requested using scanf(), what the user types does not show up until they hit ""return"". Example: #include <stdio.h> int main(void) { int a; scanf(""%d"", &a); return(0); }" "__label__question Question about concurrent gradle builds in jenkins This is more a question than an issue. When a project runs its integration tests using your gradle plugin (which is amazing :) ) on jenkins, concurrent jobs on the same node/slave often have problems (stopping other jobs docker containers for example). I am wondering what configuration/guidelines you would use to allow concurrent executions with this use case ?" "__label__enhancement Get started example The wiki page should have a get started page where the basic functionality of the framework should be shown. In this example, an image should be read (maybe using stb library), its component tree should be read, an attribute like area should be computed and an opening filter should be executed." "__label__enhancement Applications flows configured Feature #41 # User story Basically, we would like application to be well connected to deliver automation automatically. In this use case, we deliver webhook configuration between github and Jenkins. " "__label__enhancement Pass Super Variables to user script container # AS IS ``` --input FOOBAR s3://hgc-otiai10-test/foobar ``` transforms to ``` /tmp/hgc-otiai10-test/foobar ``` But user script don't want to or should not think about ""/tmp"" # TO BE ``` $AWSUB_ROOT/hgc-otiai10-test/foobar ``` Super Variables such like: - `$AWSUB_ROOT`" __label__bug Ejemplo issue Ejemplo "__label__enhancement add genelist to oncoplot/oncostrip Please add the ability for genes to take a list, rather than naming each gene of interest, when graphing oncoprints. Thanks!" "__label__enhancement Protect resources with finalizers Can we protect the all the resources with finalizers? For `Machine[Deployment|Class|Set|_]`, the node-controller-manager could remove the finalizer once no child resource exist anymore." __label__bug mod大文件无法上传 相关 #412 . 该issue中对大文件的定义:~>17.5MB的文件。 上传大文件会出三种错误,但有极小几率成功。 错误一: ![image](https://user-images.githubusercontent.com/20513115/34380871-ab40fc62-eb3f-11e7-92ec-082a9ec4156f.png) 搜了一下,与阿里防火墙有关。 错误二: ![image](https://user-images.githubusercontent.com/20513115/34380883-c32280ee-eb3f-11e7-8425-7de3f6f6b042.png) 搜索后感觉是上传控件的问题。 错误三(新): ![image](https://user-images.githubusercontent.com/20513115/34646445-50349920-f3a3-11e7-8195-73fc4dbfee08.png) 这是百科自身报错,搜不到有用信息。 留档,以上。 "__label__enhancement fake legos The bottom of the lego model is not accurate :( <img width=""529"" alt=""screenshot 2018-01-29 11 18 25"" src=""https://user-images.githubusercontent.com/1502180/35520842-3628fa0e-04e6-11e8-9d6f-4372155e270a.png""> " "__label__bug fullScreen property of the MediaPlayer doesn't work ### Bug report Creating a MediaPlayer with `fullScreen: true` has no effect. Only the `fullScreen(true)` method works. ### Reproduction of the problem Open the example from the [API reference](https://docs.telerik.com/kendo-ui/api/javascript/ui/mediaplayer#configuration-fullScreen) in full-screen Dojo mode. ### Expected/desired behavior The MediaPlayer should load in fullscreen mode, like it does if you use the `fullScreen(true)` method. ### Environment * **Kendo UI version:** 2018.1.117 Reported in: 1151644" __label__bug import less bootstrap scss when building dull scss Currently the entirety of bootstrap.scss is imported when building the dull.css file. This is not necessary and is resulting in a lot of duplication between loaded bootstrap and dull styles. "__label__enhancement WHMCS Integration I know I am not using the template provided, but are there any plans now or in the future to develop an automatic server provisioning module for WHMCS so that shoutcast providers can sell shoutcast services using AzuraCast with WHMCS." "__label__bug blockchain.py::read_header() local variable 'h' referenced before assignment On git master 81bd8d8d679a0a6ece4b35da818cf8ce958016dd. ``` Traceback (most recent call last): File ""/home/user/wspace/electrum/lib/util.py"", line 731, in run_with_except_hook run_original(*args2, **kwargs2) File ""/home/user/wspace/electrum/lib/network.py"", line 978, in run self.wait_on_sockets() File ""/home/user/wspace/electrum/lib/network.py"", line 960, in wait_on_sockets self.process_responses(interface) File ""/home/user/wspace/electrum/lib/network.py"", line 623, in process_responses self.process_response(interface, response, callbacks) File ""/home/user/wspace/electrum/lib/network.py"", line 569, in process_response self.on_get_header(interface, response) File ""/home/user/wspace/electrum/lib/network.py"", line 819, in on_get_header chain = blockchain.check_header(header) File ""/home/user/wspace/electrum/lib/blockchain.py"", line 85, in check_header if b.check_header(header): File ""/home/user/wspace/electrum/lib/blockchain.py"", line 131, in check_header return header_hash == self.get_hash(height) File ""/home/user/wspace/electrum/lib/blockchain.py"", line 271, in get_hash return hash_header(self.read_header(height)) File ""/home/user/wspace/electrum/lib/blockchain.py"", line 256, in read_header if h == bytes([0])*80: UnboundLocalError: local variable 'h' referenced before assignment ``` This was encountered by an electrum daemon running on mainnet for several hours, so don't have a way to reproduce." "__label__bug Restic installation directory chmod Hi, thanks for this project. The binary gets installed to /usr/local/bin, but the task named ""Ensure restic installation directory exist"" overwrites the folder's permissions, effectively disabling access to other binaries in that folder for regular users. I checked Ansible's file module but it states that the directory is created only if it doesn't exist. I've found no option to let existing permissions stay intact. " "__label__bug Custom field php validation If I donot input anything in email type or url type which are not required fields and submit the form, the custom error message, such as please enter a valid email appears." __label__question [AACEncoder.swift:80] inSourceFormat > nil Shows this [AACEncoder.swift:80] inSourceFormat > nil after start broadcast i have set all setting as per your uses: __label__bug Bug - User profile cannot be view for fake user __label__bug Make binderhub chart work with latest master of JupyterHub chart Currently it does not. Investigate why and fix it! __label__bug Lookup image offset on mobile screens Reminder for tomorrow: ```SCSS #lookup { position: relative; // could be necessary but idk } img { max-width: calc(100% - $lookup-padding); } __label__enhancement Add _target property It'd be nice to be able to target an element that exists elsewhere in the DOM instead of forcing the creation of a new element next to the curtain's button. "__label__enhancement <invalid subject> _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2965 Originally created at: Sat Oct 24 01:06:17 2015 Originally last updated at: Sat Oct 24 01:06:17 2015 Загрузка (вставка) изображения в поле типа "BLOB", не просто HEX-редактор, а диалог выбора изображения." "__label__enhancement Any considerations for Electron as a client target? #### What type of issue are you creating? - [ ] Bug - [X] Enhancement - [ ] Question #### What version of this module are you using? - [X] 2.1.0-beta.n (2.1 Beta n) - [ ] Other Write other if any: #### Please add a description for your issue: Considering: Loopbacks isomorphinc nature The multitarget approach of Fireloop (nativescript and webapp) Angular 2 strong functionality to support complex large-scale apps with JIT (or AOT?) I think it would be a natural evolution of Fireloop to consider Electron as a client target along with nativescript mobile platform and webapp targets. I'm not sure if there are any obvious problems that I'm missing, but on paper I think it looks like a match made in heaven and would allow Fireloop to be truly omnitarget and further leverage the offline capabilities that Loopback provides along with the multitarget capabilities of electron (Win\Mac\Linux and even some limited(?) ARM support)" __label__question 大视频无法下载问题 3G左右的视频似乎无法下载,直接点击无用。已经改成了FileDownloadLargeFileListener。 "__label__enhancement websocket connect message request wrapping I was trying to access the cookies in the websocket.connect consumer function but, differently from http requests, the message parameter is pretty much a straight mapping from the ASGI spec. I understand why http is different... it needs to be passed to the standard Django url router, but some of this parsing may be beneficial for the websocket connect phase. I am mainly talking about this: ``` (Pdb) message.content {'query_string': '', 'server': ['127.0.0.1', 8000], 'path': '/chat/undefined', 'reply_channel': 'websocket.send!mlUTqKIQFvij', 'order': 0, 'client': ['127.0.0.1', 46757], 'headers': {'sec-websocket-version': b'13', 'user-agent': b'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36', 'sec-websocket-key': b'X7xhsSTMeoYLGU3HIZGoRw==', 'connection': b'Upgrade', 'accept-encoding': b'gzip, deflate, sdch', 'cookie': b'_hjIncludedInSample=1; _hjUserId=83cdfaac-2a2d-410f-9be1-8c372b3ff0e9; ajs_user_id=181; ajs_anonymous_id=%22f0956d49-a23e-4a10-b6f1-7fffcdcbee68%22; rateapp=U7X0MP; __wzde93a2174222d=1448377220; __wzdaac6f3e9cb28=1449080161; __wzd051f8a0b0eb3=1449163449; cb-enabled=accepted; sessionid=85wza3rg8y5tt6jxkx6nvtc1spg92lf3; csrftoken=MXJKr7JROHyBSAIETFUMPXc42ejgopZc; email=l@gmail.com; fingerprint=xxx; _ga=GA1.1.1634703354.1444237866', 'cache-control': b'no-cache', 'accept-language': b'en-GB,en;q=0.8,en-US;q=0.6,it;q=0.4', 'host': b'localhost:8000', 'pragma': b'no-cache', 'upgrade': b'websocket', 'origin': b'http://localhost:8000', 'sec-websocket-extensions': b'permessage-deflate; client_max_window_bits'}} ``` is there a way to parse this and get something like a Django HttpRequest? " "__label__enhancement Trajectory data - new Cassandra Dao support for time and depth series Trajectory data has a lot more fields than a regular time or depth series. Therefore, the following is required to be done: 1) Define new topics for both time and depth series for MQTT 2) Create a Dao to ensure that a JSON object can be stored as a value of a time or depth series record." "__label__bug No Cared Data Certificate is generated Test server: http://app-keeper.mpdl.mpg.de Browser: Chrome 63, Firefox 46 Test date: 01.02.2018 Actions: Create new library -> Upload file -> Edit archive metadata -> No certificate generated, Create new library -> Edit archive metadata -> Upload file -> No certificate generated The project shows up as certified in the project catalogue (""An approach to testing the presence of certificates"") and the data in archive-metadata.md was similar to changes done on 31.01, when this problem did not occur." __label__bug Delete the old files first before unzip in the upgrade process "__label__bug Props passed to base connected component should be resolved such that mapToProps has higher precedence over props passed to the HOC For a HOC composed using [connect](https://github.com/Sage/carbon/blob/master/src/utils/flux/connect/connect.js), the props passed to the base component should be of higher precedence for [`mapToProps `](https://github.com/Sage/carbon/blob/master/src/utils/flux/connect/connect.js#L48) over props passed to the HOC. It is likely that based on the state from stores passed to `mapToProps`, the user will want to modify the props passed. # Example ``` import React from 'react'; import ReactDom from 'react'; const SimpleDiv = ({ text }) => <div>{text}</div>; mapToProps = (props) => ({ text: `MODIFIED ${props.text}` // the props can be modified here }) const HigherOrderDiv = connect(mapToProps)(SimpleDiv); ReactDOM.render( <HigherOrderDiv text='text' />, document.getElementById('app') ); ``` **Expected Output** ``` <Connect(SimpleDiv)> <SimpleDiv> <div>MODIFIED text</div> <SimpleDiv> <Connect(SimpleDiv)> ``` **Current Output** ``` <Connect(SimpleDiv)> <SimpleDiv> <div>text</div> <SimpleDiv> <Connect(SimpleDiv)> ```" "__label__bug [TW-4] lack of a tty + defaultwidth breaks task burndown _steve rader says:_ I'm seeing the lack of a tty influence task burndown! I get the expected results inspecting the output. But wrong results when it gets piped to grep... <pre> $ for w in `seq 40 10 120`; do > echo -e ""$w\t\c"" ; task rc.defaultwidth=$w burndown.daily | grep Estimated > done 40 Find rate: 2.7/d Estimated completion: No convergence 50 Find rate: 3.9/d Estimated completion: 2/15/2011 (3 wks).7/d 60 Find rate: 3.6/d Estimated completion: 2/21/2011 (4 wks)x rate: 7.4/d 70 Find rate: 3.0/d Estimated completion: 3/7/2011 (6 wks) 80 Find rate: 3.4/d Estimated completion: 4/7/2011 (11 wks) 90 Find rate: 3.9/d Estimated completion: 5/10/2011 (3 mths) 100 Find rate: 3.5/d Estimated completion: 6/4/2011 (4 mths) 110 Find rate: 5.8/d Estimated completion: 6/3/2011 (4 mths) 120 Find rate: 6.3/d Estimated completion: 7/11/2011 (5 mths) </pre> The expected results is... <pre> Find rate: 6.4/d Estimated completion: 10/21/2015 (4.8 yrs) </pre>`" "__label__bug Multiple stacked bottom notifications not displayed correctly on page load Hi Ive a weird problem, which I hope could be solved ;) When displaying multiple notifications on page load (I call pnotify in loop function several times in document.ready) the messages are displayed on top of each other (last message on top) during the fade animation and after complety faded in they pop to their right stacked place. When I trigger this ""loop function"" again manually without reloading the page the messages would display correctly (fade in at the right place). Hope, Ive explained this problem clearly - its only a cosmetic one, but it would be nice if this could be 100%. Except of this - very nice script :) Thanks, Frank " "__label__enhancement .nullvalue _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2986 Originally created at: Fri Dec 4 16:56:58 2015 Originally last updated at: Fri Dec 4 16:56:58 2015 To remove clutter from grids it would be nice if we could display a specific string for NULL-values or display nothing at all. Just like the .nullvalue command in sqlite3. It would be nicest if this is settable for each view/table, but system-wide would be nice as well." __label__enhancement Cockpit にバケットの一覧を表示する。 __label__enhancement Main button color class Option to provide the main button color class (btn-success / btn-warning etc) "__label__bug Creating and bulk uploading entities without training This is a question about creating and adding new entities I have created a new entity and bulk uploaded keywords to it. Wit fails to recognize the newly added entity when is test a few sentences. For example: I have created a new entity ""color"" =>[""blue"",""black"",""red""] When I test the sentence ""Is it available in red?"", Wit does not give me the entity ""color"". 1. Why is this happenning? 2. Is expression training needed whenever a new entity is added separately? My App Id : 5962e9f7-f9fd-4769-a610-5e1bc1668a15 " __label__enhancement Reading / Header: fix alignment of contents & title __label__bug New Profile: Right header links reference JAAS even in bootstrapped controller "__label__enhancement make pagination, if amount of players > 45 " __label__bug Milestone is not displaying in issue opened from milestone view **Repro steps:** Open milestone list. Open milestone with issues. Open issue. Go into edit mode. **Expected:** In milestone field current milestone is showing. **Actual:** Milestone field is empty UPDATE: **Another Repro steps:** Open repository issues list. Open issue. "__label__enhancement In-page debugging for WebSockets Right now, exceptions raised in WebSocket handlers print to the console and are not visible on the web page as you're developing it. Ideally, there would be some system that forwards errors through to either the developer console in a browser or some other display area, so errors that happen are more visible without having to look in two windows. The mechanism by how this is done might be tricky, however. Most options I can think of involve having to inject additional JavaScript into the page to open a separate connection to transport debug information over, and it may not be in scope of the Channels project. " __label__bug You can make the same connection twice You can make the same connection between two states twice. __label__enhancement Missing blocks - [x] Call To Action Block - [x] Customer Service Block - [x] oEmbed Block __label__enhancement [TW-808] Blackberry plug-in _David Patrick on 2009-05-29T19:37:49Z says:_ needs to happen __label__bug TypeScript: Missing inPlaceSort property for the DataSource in the definitions The TypeScript definition for the DataSource is missing the **inPlaceSort** property: [https://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-inPlaceSort](https://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-inPlaceSort) ### Environment * **Kendo UI version:** 2017.3.1026 __label__enhancement 経験値バーの利用方法 経験値レベルはエーテル量として使用する. 経験値バーは周囲の意志との距離を示す. __label__enhancement Show absolute file path on detailed view That's a feature we have in `atom-filesize`. It should be available in the vscode version as well. __label__question Erro na adesão do município de Cruz das Almas/BA O seguinte erro está acontecendo todas as vezes que a prefeitura tenta fazer adesão de Cruz das Almas/BA: ![1](https://user-images.githubusercontent.com/18294515/33843905-d545b8a2-de85-11e7-83db-ae97eff1fe47.png) "__label__bug MapView.getBoundingBox returns strange values when the map wraps vertically related #521 specifically, north and south latitude are the same value" __label__bug Allow ADB am(Activity manager) to be used "__label__bug Tags not applied from context According to the docs, a key of `tags` in the error context should update the tags applied to the error. https://docs.honeybadger.io/lib/javascript/guides/customizing-error-reports.html#custom-metadata-context I've succesfully sent errors with the `tags` key in the context, but it doesn't populate the tags in the error notice page." "__label__bug memberstats: new family members are not counted during grace period Wue to a bug in RunningAHEAD, new family members who are added during the grace period are not counted. While RA will fix this bug this data error will persist with old data. A workaround within steeps api is likely possible. " "__label__enhancement Does chummer supports multiple specializations? I think I'm might be missing something obvious here, but how can I add more than one specialization to a skill?" __label__question Switch to styled components We should think about switching to styled components instead of less. This would fix the requirement of a less-loader (#225) and would add more flexibility to the styles. "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/f0tTfKnUD5OsMzSmw6W6GDH6ct0GKdTKlQXUu-a0blX7zZ7dSnHP0e2dDArpbGE50/O6oS0AT5I76GHyxFflIEoUCspuLESXX33lDeZq6lrqKhxpgAJyDWPyWQsF7IHepN0/uOxSVmvClETKHXoahHWEyHMwk8vRqlW9MdK9mpd1Fh01) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__bug returnTicker method sometimes produce fatal error and exit. I use poloniex-api-node to subscribe to ticker events using openWebSocket({ version: 2 }) method. From time to time node app exits after such error: ``` node[15508]: /app/node_modules/poloniex-api-node/lib/poloniex.js:601 node[15508]: this.ws.send('.') node[15508]: ^ node[15508]: TypeError: Cannot read property 'send' of null node[15508]: at Timeout.ws.keepAliveId.setInterval [as _onTimeout] (/app/node_modules/poloniex-api-node/lib/poloniex.js:601:24) node[15508]: at ontimeout (timers.js:469:11) node[15508]: at tryOnTimeout (timers.js:304:5) node[15508]: at Timer.listOnTimeout (timers.js:264:5) ``` Current workaround is to restart node app after every exit. __label__bug App notifications are not working App notifications are not working. May be it is from the back-end. "__label__bug NPE on topic-controller restart after changing topic partitions number So following the steps for reproducing the error ... - Start the topic controller and create a new topic ConfigMap describing a topic with just 1 partition. All works fine and ConfigMap, Kafka and Strimzi Zk store are aligned - Use the `kafka-topics.sh` tool for altering the topic increasing the number of partitions, i.e. : `bin/kafka-topics.sh --zookeeper 172.30.29.40:2181 --alter --topic orders --partitions 2` Of course the ConfigMap and the Strimzi Zk store aren't updated yet (working on the issue #137). - Stop topic controller. - Start topic controller, the following exception is thrown : [2018-01-25 10:23:58,429] INFO <Controller :402> [oop-thread-5] Reconciling topic orders, k8sTopic:nonnull, kafkaTopic:nonnull, privateTopic:nonnull [2018-01-25 10:23:58,430] DEBUG <Controller :467> [oop-thread-5] 3 way diff [2018-01-25 10:23:58,431] DEBUG <Controller :529> [oop-thread-5] topicStore->kafkaTopic: TopicDiff{differences={numPartitions=newNumPartitions=2}} [2018-01-25 10:23:58,432] DEBUG <Controller :531> [oop-thread-5] topicStore->k8sTopic: TopicDiff{differences={}} [2018-01-25 10:23:58,432] DEBUG <Controller :540> [oop-thread-5] Diffs do not conflict, merged diff: TopicDiff{differences={numPartitions=newNumPartitions=2}} [2018-01-25 10:23:58,432] DEBUG <Controller :562> [oop-thread-5] Updating cm, kafka topic and topicStore [2018-01-25 10:23:58,436] DEBUG <Controller :586> [oop-thread-5] Enqueuing event UpdateConfigMap(topicName=orders) [2018-01-25 10:23:58,574] INFO <igMapWatcher:48> [0.1:8443/...] ConfigMap watch received event MODIFIED on map orders with labels {strimzi.io/kind=topic} [2018-01-25 10:23:58,577] DEBUG <InFlight :119> [0.1:8443/...] resultHandler:io.strimzi.controller.topic.ConfigMapWatcher$$Lambda$24/1911605950@56feb51d, action:onConfigMapModified-1648139407, fut:onConfigMapModified-1648139407 [2018-01-25 10:23:58,577] DEBUG <Controller :586> [oop-thread-5] Enqueuing event io.strimzi.controller.topic.Controller$$Lambda$62/696409212@7263b06d [2018-01-25 10:23:58,577] DEBUG <InFlight :126> [0.1:8443/...] Queueing onConfigMapModified-1648139407 for deferred execution after onConfigMapAdded-1125582984 [2018-01-25 10:23:58,578] DEBUG <Controller :586> [oop-thread-5] Enqueuing event UpdateKafkaPartitions(topicName=orders) [2018-01-25 10:23:58,580] DEBUG <aAdminClient:189> [oop-thread-5] [AdminClient clientId=adminclient-1] Queueing Call(callName=createPartitions, deadlineMs=1516872358579) with a timeout 120000 ms from now. Jan 25, 2018 10:23:58 AM io.vertx.core.impl.ContextImpl SEVERE: Unhandled exception java.lang.NullPointerException at io.strimzi.controller.topic.BaseKafkaImpl$UniWork.<init>(BaseKafkaImpl.java:88) at io.strimzi.controller.topic.ControllerAssignedKafkaImpl.increasePartitions(ControllerAssignedKafkaImpl.java:73) at io.strimzi.controller.topic.Controller$IncreaseKafkaPartitions.handle(Controller.java:267) at io.strimzi.controller.topic.Controller$IncreaseKafkaPartitions.handle(Controller.java:252) at io.vertx.core.impl.ContextImpl.lambda$wrapTask$2(ContextImpl.java:344) at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163) at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:403) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:463) at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) at java.lang.Thread.run(Thread.java:745) After this exception, the ConfigMap is updated to 2 partitions but not the Strimzi Zk store which still says 1 partition. Deleting the ConfigMap isn't reflected in a corresponding deletion of the topic in Kafka and in the Strimzi Zk store. " "__label__enhancement Automatizar las pruebas del widget para timelines **Prioridad:** alta **Descripción:** Implementar las pruebas necesarias para comprobar que el widget para timelines funciona correctamente y automatizar éstas con Travis CI. Para ello, se implementarán varios tests: - Comprobar que el widget se encuentra registrado correctamente en WordPress. - Comprobar que el formulario de configuración de las dimensiones de los timelines sólo acepta valores correctos." "__label__enhancement Show selected DEBs in UI 1. Don't allow clicking install / uninstall if no DEBs are selected 2. If DEBs are selected, show which ones " __label__bug Wildland fires legend The wildland fires legend will stack when selected/deselected multiple times. Should only have 1 legend entry display when the layer is activated. "__label__bug Not uploading directories to S3 Hi, thanks for building this promising library. I'm looking forward to using it. My app uses the default value for `STATICFILES_FINDERS` ```py STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', ) ``` When asset are collected into static/, I have these files: ``` $ ls -alh static total 4200 drwxr-xr-x 16 ben staff 512B Jan 24 15:49 . drwxr-xr-x 61 ben staff 1.9K Jan 25 10:59 .. -rw-r--r-- 1 ben staff 669B Jan 24 15:49 500.html drwxr-xr-x 6 ben staff 192B Jan 24 15:49 admin drwxr-xr-x 5 ben staff 160B Jan 24 15:49 debug_toolbar -rw-r--r-- 1 ben staff 209B Jan 24 15:49 demo_config.yaml -rw-r--r-- 1 ben staff 671K Jan 24 15:49 demo_deed.pdf -rw-r--r-- 1 ben staff 101K Jan 24 15:49 demo_statement.pdf drwxr-xr-x 5 ben staff 160B Jan 24 15:49 django_extensions drwxr-xr-x 5 ben staff 160B Jan 24 15:49 gis drwxr-xr-x 13 ben staff 416B Jan 24 15:49 images -rw-r--r-- 1 ben staff 23B Jan 24 15:49 robots.txt ``` There are files (500.html, demo_config.yaml) and there are directories (debug_toolbar, images, gis). When I use Collectfast, only the files are uploaded to S3. ``` $ ./manage.py collectstatic --settings=settings_local --no-input --clear Copying '/Users/ben/code/minerals/core/static/500.html' Copying '/Users/ben/code/minerals/core/static/robots.txt' Copying '/Users/ben/code/minerals/core/static/demo_deed.pdf' Copying '/Users/ben/code/minerals/core/static/demo_statement.pdf' 4 static files copied. ``` I expected the files *and* directories to be uploaded to S3, not just the files. When I use `--disable-collectfast`, causing `storages.backends.s3boto3.S3Boto3Storage` to be used directly, the files *and* directories are uploaded to S3. ``` $ ./manage.py collectstatic --settings=minerals.settings_local --no-input --clear --disable-collectfast ...(lots of copying of a bunch of files)... 226 static files copied. ``` It's surprising behavior that Collectfast doesn't upload the directories like S3Boto3Storage does when used directly (I think I also tried with S3BotoStorage). **Is there a way to get Collectfast to upload the directories?** Here's my config... ```py STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', ) # I verified that the /var/tmp/collectfast_cache directory is being used as expected CACHES = { ""default"": { ""BACKEND"": ""django_redis.cache.RedisCache"", ""LOCATION"": ""redis://127.0.0.1:6379/2"", ""OPTIONS"": { ""CLIENT_CLASS"": ""django_redis.client.DefaultClient"", } }, 'collectfast': { 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache', 'LOCATION': '/var/tmp/collectfast_cache', 'TIMEOUT': None, 'OPTIONS': { 'MAX_ENTRIES': 1000, }, } } # Collectfast STATICFILES_STORAGE = ""storages.backends.s3boto3.S3Boto3Storage"" AWS_PRELOAD_METADATA = True COLLECTFAST_THREADS = 20 COLLECTFAST_DEBUG = True COLLECTFAST_CACHE = 'collectfast' # I've also setup Boto3 settings correctly (`AWS_STORAGE_BUCKET_NAME`, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_QUERYSTRING_EXPIRE`) ``` Thanks for any help, and thanks for the time you spend on this library. I was surprised at how slow collectstatic was when used with ManifestStaticFilesStorage and S3Boto3Storage, so I was very excited to find this library." __label__enhancement Make Linux compatible - [ ] Make front end compatible - [x] Make indexing compatible "__label__question Aggregation-related odata queries Hi @StefH , I'd want to know if there is a possibility to use your package to `select distinct` values or to do `sum` operation for example, like in 7.1 and 7.2 in the following link. http://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/cs02/odata-data-aggregation-ext-v4.0-cs02.html#_Toc435016609 I didn't find any solution and it kind of bothers me for what I'd need to do... Please tell me if I'm wrong... Thanks in advance !" "__label__enhancement Add support for ERC67 for ERC20 tokens in the Request Transaction Activity Right now, if I change the default token the wallet shows the information about that token, but when I press the request button and puts a value to generate and ERC67 string it does not put the Token information. An example from ERC67 This is the same function as above, to send 5 unicorns from he sender to deadbeef, but now with a more readable function, which the client converts to byte code. ` ethereum:0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7?gas=100000&function=transfer(address 0xdeadbeef, uint 5)` In order to fully support the ERC67 feature, the when a ERC67 URI is scanned the Walleth also needs to support that operation. " "__label__enhancement VisualizationTool launches should have access to **all** of a Dataset's Node metadata information The [current implementation](https://github.com/refinery-platform/refinery-platform/blob/master/refinery/tool_manager/models.py#L423-L432) only sends `Node` information over for `Nodes` that were selected in the Tool Launch UI. Out of @mccalluc & @ngehlenborg conversation today we now want to send over all the Node info related to the Dataset. Implementation Notes: - [ ] `file_relationship_urls` shouldn't be used in `_create_container_input_dict` anymore since we have access to file url info through Nodes - [ ] We should still preserve the file relationship structure of the `file_relationships` key, except with Node uuids instead of urls, and the name in json should change. (`node_relationships`?) - [ ] `update_file_relationships_with_urls` should be refactored to update the file relationships with `Node` uuids only , and should be renamed (`update_file_relationships_with_node_uuids` ?) - [ ] Some of our existing Vis Tools probably won't like these changes so those should be updated to work properly #### Edit: Not worrying so much about these checkboxes as theres no concrete use case for all of this extra Node information atm, and addressing the checkboxes would cause lots of backwards incompatibility with current vis tools. [Getting all of the DataSet's Node info into the input.json](https://github.com/refinery-platform/refinery-platform/pull/2569) should suffice for now." "__label__bug ChipField - Source replaced by label when label set When setting a label on Chipfield, the source will no longer be showed. It displays the label instead of source. ``` <List ... > <Datagrid> <ChipField label=""Operating System"" source=""os"" /> <ChipField source=""os"" /> </Datagrid> </List> ``` => generates the following ouput | Operating System | os | | ------------- |:-------------:| | Operating System | ios | | Operating System | android | ... **Environment** * Admin-on-rest version: v2.0.0-beta1 * Material-ui: material-ui@1.0.0-beta.31 " "__label__bug [TW-518] Adding a task with “im” in the description will expand to “imask” _Martin U on 2012-06-29T15:47:34Z says:_ When I add a new task which contains “im”, say with: $ task add Bücher im Regal ordnen I will end up with a task which has a description with “imask”, like so: Bücher imask Regal ordnen I use version 2.0.0" __label__enhancement Add Purgecss "__label__bug Unit tests for dbWork broken PR #256 which changed `dbWork` to a `WAL`-database, caused the unit tests from `test_dbWork.R` to fail -- however, so far they were run only locally and thus this bug slipped detection by our CIs." "__label__enhancement CAST is compiled without multithreading on ECPC When using the new premake.lua script on ECPC CAST is compiled without multithreading. So you get the message ""CAST was compiled without multithreading. Ignoring the config-option ""cores""."" when running the program." "__label__enhancement Possibilities for adding IP source specific addresses There are scenarios where I would like to look at transport streams with the same address and port and filter by the source address, the DekTec tools, VLC and others allow this by using the convention 10.200.53.120@239.1.1.1:5000 Do you think the IP input for tsduck could be extended to support this some time in the future ?" "__label__bug Problem with audeep.backend.parsers.no_metadata.NoMetadataParser Hi, using `inspect` with `audeep.backend.parsers.no_metadata.NoMetadataParser` seems to crash. Changing line 97 in `inspect.py` from: (""number of labels"", len(parser.label_map)), to (""number of labels"", len(parser.label_map) if parser.label_map else 0), solved the issue, cheers." __label__enhancement Create tournament page: move checkbox On the `Create tournament `page the `Spiel um platz 3` Checkbox should be placed in the section `Basisinformationen` right after the `Spielsystem` field. ![image](https://user-images.githubusercontent.com/29160369/35778982-53d05ff4-09c6-11e8-8cf7-1c430c6571f5.png) "__label__bug AddressPickerDialog no longer uses 'enter' to select autocomplete suggestions i.e. if you type @Aman and then try to use the cursor keys and enter to select the proposal, it all breaks" "__label__question Resolvers & WebSockets ETA Timeline Just curious when Resolvers and hopefully support for Web Sockets is set to release (a soft roadmap to hope for, no hard dates needed of course). Apollo is already using resolvers to manage local application state, and also allows you to query/mutate your local store in the same fashion you would with a remote data store. What will be different or perhaps better?" __label__bug Adding a user to a group from group page crashes page - Go to Group page - click a group - click edit - click to add a user - click on a user and the page will crash and just be blank instead of adding the user __label__enhancement Improve briefing template formatting Use that cool font for headers. __label__bug Excessive battery consumption <details> ![image uploaded from ios](https://user-images.githubusercontent.com/17472907/34878310-ce638d90-f7ba-11e7-9bef-8043666e1ec1.png) </details> logs provided directly "__label__question which modeldoes ladybug use to calculate global radiation ? there is many models of calculation of global solar radiation ( Lacis & Hansen, le modèle de Davies & Hay, le modèle de Bird & Hulstrom et celui de Atwater & Ball ) which one does ladybug use?" __label__enhancement Enhancements all done 👍 "__label__enhancement DoD User Interface Wording Renaming the DoD user interface to refer to ""surfaces"" instead of DEM surveys." "__label__enhancement Stuck at now loading page During long-time runnig, the webpage sometimes stuck at now loading page for no reason, which requires a refresh before further operation. However, currently the bot does not response to this error and will wait forever for the next move. Could you please improve this? Thank you! ![qq 20180120230508](https://user-images.githubusercontent.com/32561965/35190730-65566476-fe36-11e7-8cd1-283e7473cc43.png) " "__label__bug Improve error message for missing service name on `env list` When running `fargate service env list` -- i.e. missing the name of the service that I wanted to list the env variables for -- I got the following error: ``` $ fargate service env list panic: runtime error: index out of range goroutine 1 [running]: github.com/jpignata/fargate/cmd.glob..func16(0x1f424c0, 0x1f68320, 0x0, 0x0) /Users/jp/workspace/go/src/github.com/jpignata/fargate/cmd/service_env_list.go:18 +0x6c github.com/spf13/cobra.(*Command).execute(0x1f424c0, 0x1f68320, 0x0, 0x0, 0x1f424c0, 0x1f68320) /Users/jp/workspace/go/src/github.com/spf13/cobra/command.go:750 +0x2c1 github.com/spf13/cobra.(*Command).ExecuteC(0x1f41740, 0xc42001e0b8, 0x0, 0xc420014f70) /Users/jp/workspace/go/src/github.com/spf13/cobra/command.go:831 +0x30e github.com/spf13/cobra.(*Command).Execute(0x1f41740, 0x0, 0x0) /Users/jp/workspace/go/src/github.com/spf13/cobra/command.go:784 +0x2b github.com/jpignata/fargate/cmd.Execute() /Users/jp/workspace/go/src/github.com/jpignata/fargate/cmd/root.go:149 +0x5e main.main() /Users/jp/workspace/go/src/github.com/jpignata/fargate/main.go:8 +0x20 ``` In comparison, running `fargate service info` (again missing service name), gives this much more helpful error message: ``` Error: accepts 1 arg(s), received 0 Usage: fargate service info <service-name> [flags] Flags: -h, --help help for info Global Flags: --cluster string ECS cluster name (default ""fargate"") --no-color Disable color output --region string AWS region (default ""us-east-1"") -v, --verbose Verbose output ``` Would be good if the first was the same as the second." __label__enhancement Develop /services/git/repositories https://app.swaggerhub.com/apis/fabric8-launcher/backend/2.0.0#/Git/get_services_git_repositories Parent: #47 __label__question LeaderF uses Ctrl+C to quit which will interrupt jobs/timer's callbacks by mistake. LeaderF requires user to press ctrl-c when they want to close the search window. and sometimes ctrl-c will easily be pressed by mistake and will interrupt a timer callback. or other job callbacks running at the same time. All the internal state of timers/jobs messed up because of a single unexpected ctrl+c. Ctrl+C is not encouraged in daily usage. Can leaderf use a different key to quit ? like ctrlp just a single ESC ? "__label__bug Return to top button not working properly in Products ## Description The return to top button inside Products is not scrolling to complete top of page and also doesn't function more than once. ## Steps to Reproduce Go to: 1. Products> Loan Products> select any product > go to bottom and click ```top``` 2. Products> Savings Products> select any product > go to bottom and click ```top``` ## Settings - Mifos X version: 17.07.01.RELEASE - Browser used: Firefox 58.0.1 (64-bit) Ubuntu ## Screenshots, if any ![peek 2018-02-04 23-30](https://user-images.githubusercontent.com/20224346/35780684-36b15c72-0a05-11e8-8700-abdfa20e2b20.gif) " __label__bug [报表]添加报表规则过滤选项中选择了列、页面不显示列的名 添加报表规则过滤选项中选择了列、页面不显示列的名 "__label__bug `import/extensions` not flagging errors in `export ... from ""./mod""` As in, it's missing both of these, which should be considered errors: ```js /* eslint import/extensions: [2, ""always""] */ export {foo} from ""./foo""; /* eslint import/extensions: [2, ""never""] */ export {foo} from ""./foo.js""; ```" __label__bug UI Configuration: Audit Event ID(s) value(s) not shown in Audit Suppress Criteria when device is loaded "__label__bug Unknown domain ""ComIbmAggregateReplyBody"". Hi, I´ve got the issue but looking at the IBM documentation it seems that this is a false positive. Example of use: DECLARE refData REFERENCE TO InputRoot.ComIbmAggregateReplyBody.AccDocumentPost; Another issue that i don't find in anywhere is how we can bypass this false positive in the plugin? Cheers, Bigster" __label__bug Remove hard coded Mongo URI __label__enhancement Nested classes are not supported At the moment nested classes are not supported for definition generation. __label__enhancement Create git hooks Set a ESLint verify before a `git commit` and a minimum coverage threshold verification before a `git push`. "__label__enhancement Include Canticles Could ""Canticles"" be added to the script so that it is marked as ""Song of Songs""? (i.e. `<a data-cross-ref='{""scripture"":""Song.4.7""}'>`Canticles 4:7`</a>`)" __label__enhancement Extension shouldn't close tabs when close window keystroke is pressed That's not the default Atom behavior and the extension should not change that "__label__enhancement Improve -timelimit when the given file contains more than one goal 1 - set `-timelimit n` for every goal ? What about time spent in preprocessing ? Should we set a timelimit for preprocessing as well ? Which time should be reported for each goal ? We should probably keep the current behavior when the file contains one goal, and do something else when we have multiple goals per file. 2 - For a better readability, we may also add a new option `timelimit-per-goal n`. 3 - Currently, if we have multiple goals per file, the common context is duplicated and a fresh SAT context is used for every context+goal. Context duplicated can probably be avoided(repeatedly assume the same (physical) context and the goals successively). We can also easily reuse the context of the functional SAT solver. Reusing the context of the imperative SAT may be more difficult." __label__bug The telephone number is wrong Actual number is 333444553 . Please change it. "__label__bug Improve ssl certificate error reporting When gocrack_server parses the configs/server.yaml config, it throws the same error when encountering issues with the ca certificate, child certificate, and email server certificate. This makes it difficult to troubleshoot certificate issues." "__label__bug Úprava ikonek Ve vrstvě ""Startupový ekosystém"" mají vrstvy ""Podnikatelský inkubátor"" a ""Akcelerátor"" kolečko. Chceme raketku, jako všechny ostatní. ![image](https://user-images.githubusercontent.com/1460823/35854454-b0f71cc0-0b30-11e8-89bf-41dad0433ee6.png) " "__label__bug [APP SUBMITTED]: OSError: [Errno 36] File name too long: '/media/bigdisk/Anime/The Disastrous Life of Saiki K/Season 01/The Disastrous Life of Saiki K - S01E01E02 - The Disastrous Life of a Psychic + The Worst of the Worst! Riki Nendou + Shun Kaidou, AKA The Jet-Black Wings + Intelligent and Beautiful! Kokomi Teruhashi & Hot-Blooded! Dodgeball! + Reach Him! Sign of Love + Saiki Family Home Renovation! Drastic Makeover!! + Deceive! Mind Control.mkv' ### INFO **Python Version**: `2.7.13 (default, Nov 24 2017, 17:33:09) [GCC 6.3.0 20170516]` **Operating System**: `Linux-4.9.0-4-amd64-x86_64-with-debian-9.2` **Locale**: `UTF-8` **Branch**: [feature/add-theming](../tree/feature/add-theming) **Database**: `44.9` **Commit**: pymedusa/Medusa@4e0d16b55903c9dc2bb98d593b530c203be803ff **Link to Log**: https://gist.github.com/0e86def32496f17e413975c3b4bfc4b4 ### ERROR <pre> 2018-02-03 10:00:27 ERROR POSTPROCESSOR :: [4e0d16b] OSError: Traceback (most recent call last): File ""/opt/medusa/medusa/helpers/__init__.py"", line 285, in copy_file shutil.copyfile(src_file, dest_file) File ""/opt/medusa/lib/shutil_custom/__init__.py"", line 42, in copyfile_custom fout = os.open(dst, WRITE_FLAGS) OSError: [Errno 36] File name too long: '/media/bigdisk/Anime/The Disastrous Life of Saiki K/Season 01/The Disastrous Life of Saiki K - S01E01E02 - The Disastrous Life of a Psychic + The Worst of the Worst! Riki Nendou + Shun Kaidou, AKA The Jet-Black Wings + Intelligent and Beautiful! Kokomi Teruhashi & Hot-Blooded! Dodgeball! + Reach Him! Sign of Love + Saiki Family Home Renovation! Drastic Makeover!! + Deceive! Mind Control.mkv' </pre> --- _STAFF NOTIFIED_: @pymedusa/support @pymedusa/moderators " __label__bug Change class weight percent position randomiser currently at line 332 in ascension/myscriptclass1.uc the arrays are given length before inserting values which will push the previous inserted values further down the array making it less random. either don't give length or overwrite blank values then check if they are blank before inserting and remove blank value alternatively remove a blank value after each insert "__label__enhancement Popup: add verticalOffset Component: Popup New prop: `verticalOffset` Allows the vertical position of a popup to be offset, he vertical equivalent to the horizontal `offset` prop. I'll submit a PR." "__label__bug Polygon2D invert doesnt work Godot 2.1.4, Godot 3.0 Polygon2D has an `invert` property, which I guess is supposed to draw the outside of the polygon rather than the inside (up to some distance), but in some cases it does't work. Example in 3.0: [Polygon2DInvert.zip](https://github.com/godotengine/godot/files/1693066/Polygon2DInvert.zip) The fact the polygon is convex or concave doesn't seem to matter. Sometimes invert works, but in the repro project it doesn't work and the console says `bad polygon`. If you move points a little bit you will see it works again, but some configurations don't work. I don't see a pattern predicting when this happens. " "__label__bug First click on mobile triggers onChange twice Can be reproduced in http://dreyescat.github.io/react-rating/ Alert when rate changes Open chrome, emulate as iphone X click on any symbol except first you will get two alerts." __label__bug cnd file with only namespaces is marked as invalid DEW IT!! "__label__bug Crash on switching sprites after connecting ""stop other scripts in this sprite"" ### Expected Behavior No crash! ### Actual Behavior If you use a ""stop other scripts in this sprite"" block, with another block connected after it, and switch away from and back to that sprite, it crashes. This seems related to https://github.com/LLK/scratch-blocks/issues/1356 ### Steps to Reproduce - Build this stack: <img width=""195"" alt=""screen shot 2018-01-22 at 1 28 05 pm"" src=""https://user-images.githubusercontent.com/567844/35237319-565331be-ff78-11e7-8a84-8f3cf3529716.png""> - Switch to another sprite or the stage, and then back" "__label__enhancement i used imagesMaxWidth but some of my images can't get windows width some of my images seems to be largee than my devices screen width here are my codes ``` <HTML html={data.content} imagesMaxWidth={Dimensions.get('window').width} tagsStyles={ {a: { fontStyle: 'italic', color: '#039BE5',fontWeight: 'bold' } }} baseFontStyle={{fontSize:15}} /> ```" __label__question New Release? The latest release of PCL (1.8.1) does not support VTK 8.1. Support for it was added in #2112 in December. It would be great to see a released version that supports current VTK. I'm sure many other things changed/improved too since last August. "__label__bug IMT comparisons Should this be happening? `import openquake.hazardlib.imt as IMT` `imt1 = IMT.SA(9.0)` `imt2 = IMT.SA(10.0)` `# the line below fails` `assert imt1 < imt2` We know that the workaround is to compare the periods contained in the IMT classes, but there is a `__lt__` method defined for these which seems to not work as expected." __label__bug Date Display Issue 2/5/18 as showing incorrectly as 5/2/18 "__label__bug Interactive repository warning breaks gulp workflow The addition of an interactive warning when the repository field has been omitted breaks gulp workflows. Running `vsce` from a gulp task, the `vsce` command will hang when there the repository field has been omitted. This causes the entire gulp task to hang, which can be a major annoyance when running package as part of an automated build. Obviously the end user solution is to just assign a repository field, but in the context of CI builds, this might cause the build to fail via timeout, which takes much longer than a CI build should take to fail. My suggestion would be to either just emit the warning as a warning and continue, or allow for a warnings as errors command line argument. Alternatively, you could follow the pattern of `yum` and have a `-y`/`-n` argument to bypass and yes/no interactive questions." "__label__bug BUG: reindex(columns=..) after get_dummies raises TypeError: values must be SparseArray #### Code Sample ```python df = pd.DataFrame.from_items([('GDP', [1, 2]),('Nation', ['AB', 'CD'])]) df = pd.get_dummies(df, columns=['Nation'], sparse=True) # SparseDataFrame df.reindex(columns=['GDP']) # Fails :/ TypeError: values must be SparseArray ``` #### Problem description I'm doing a pandas upgrade from 0.19.x to 0.21.x for my project. The above code works under 0.19.x, but not under 0.21.x. " "__label__bug Incorrect handling of baud rate values in RTPS **Bug Report** This is a problem with the fast RTPS code. For both client and agent code, baud rate values are generated from the program argument by converting the argument directly to a number. However in termios.h, the baud rate is encoded in a number of preset values, eg B57600. This affects the agent running on Ubuntu since the encoded value is different from the actual baud rate. As a result executing the following in Ubuntu terminal: ./micrortps_agent -b 57600 -d /dev/ttyUSB1 results in this failure message: UART transport: device: /dev/ttyUSB1; baudrate: 57600; sleep: 1us; poll: 0ms ERR SET BAUD /dev/ttyUSB1: 0 (22) Close UART EXITING... With the problem corrected using an extra function to convert the baud rate to the encoded value, the behaviour shown in the terminal is: UART transport: device: /dev/ttyUSB1; baudrate: 57600; sleep: 1us; poll: 0ms no flush sensor_combined publisher started Note that there may be a separate problem with the code generation for the agent application. To obtain the above result, the agent software was generated using a modified msg/tools/generate_microRTPS_bridge.py script with the following diff: ```diff 53,54c53,59 < if dir[0] != '/': < dir = root_path + ""/"" + dir --- > if len(dir)>0: > if dir[0] != '/': > dir = root_path + ""/"" + dir > else: > dir = root_path > > print ""dir returned from get_absolute_path"",dir 66c71 < parser.add_argument(""-t"", ""--topic-msg-dir"", dest='msgdir', type=str, nargs=1, help=""Topics message dir, by default msg/"", default=""msg"") --- > parser.add_argument(""-t"", ""--topic-msg-dir"", dest='msgdir', type=str, nargs=1, help=""Topics message dir, by default msg/"", default="""") ```" "__label__bug changing CRS does not work (anymore) when changing the CRS of the project (when zoomed in) to something else than EPSG:3857 qgis chrashes with segmentation fault. QGisVersion 2.18.15 and 2.18.16 OS: 16.04 QMS Version: 0.19.3 I've tried it with several different services, always with the same result. (OSM Standard, MapSurfer OSM Roads, Google Satellite, a.o.) More detail: - I can load a service if project CRS is EPSG:3857. I can change the CRS, but when I zoom in QGis chrashes. - If any the project CRS is anything other than EPSG:3857 and I switch on a QMS layer QGis chrashes" "__label__enhancement Modify, Delete, Move, Rotate existing features By Looking at the example at: http://viglino.github.io/ol-ext/examples/map.interaction.drawtouch.html it only does adding of new features. How would I handle modifying (Modify, Delete, Move, Rotate, Clone, etc. etc.) existing features by using it on a Touch Device? Also, is this compatible with Openlayers 4?" __label__bug Error importing dependency-check report In the newer version of the dependency scanner a ? can be included in the file path of issues. This ? is causing the import to fail. Quick fix would be to filter out the ? part of the path. Caused by: java.nio.file.InvalidPathException: Illegal char <?> at index 39: ..\package.json?moment at sun.nio.fs.WindowsPathParser.normalize(Unknown Source) at sun.nio.fs.WindowsPathParser.parse(Unknown Source) at sun.nio.fs.WindowsPathParser.parse(Unknown Source) at sun.nio.fs.WindowsPath.parse(Unknown Source) at sun.nio.fs.WindowsFileSystem.getPath(Unknown Source) at java.io.File.toPath(Unknown Source) at org.sonar.api.scan.filesystem.PathResolver.relativePath(PathResolver.java:121) at org.sonar.api.batch.fs.internal.AbsolutePathPredicate.get(AbsolutePathPredicate.java:52) at org.sonar.api.batch.fs.internal.DefaultFileSystem.inputFiles(DefaultFileSystem.java:149) at org.sonar.api.batch.fs.internal.DefaultFileSystem.inputFile(DefaultFileSystem.java:115) at org.sonar.dependencycheck.DependencyCheckSensor.addIssues(DependencyCheckSensor.java:126) at org.sonar.dependencycheck.DependencyCheckSensor.execute(DependencyCheckSensor.java:209) ... 35 more "__label__bug Drag & drop in database list does not work _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2916 Originally created at: Thu Jul 9 12:00:16 2015 Originally last updated at: Thu Jul 9 12:00:16 2015 When draging a data base to a group to move it into that group nothing happens. In the documentation it is said that this should work when grouping databases. What might be the reason for this feature not to work? **Plugins loaded:** ScriptingQt, PopulateRandomText, PopulateRandom, PopulateSequence, SqlEnterpriseFormatter, JavaScriptHighlighterPlugin, DbPluginSqlite3, SqliteHighlighterPlugin, MultiEditorHexPlugin, SqlFormatterSimplePlugin, CsvImport, RegExpImport, MultiEditorDatePlugin, DbSqlite2, PopulateConstant, CsvExport, PopulateScript, ScriptingSql, XmlExport, PopulateDictionary, MultiEditorTextPlugin, MultiEditorNumericPlugin, PdfExport, MultiEditorBoolPlugin, MultiEditorTimePlugin, Printing, ScriptingTcl, JsonExport, SqlExport, ConfigMigration, MultiEditorDateTimePlugin, HtmlExport **Version:** 3.0.6 **Operating System:** Windows 8.1, 64bit" __label__bug Deployment fails for teams restricted to selected projects in 2018.2.0 users have reported that deployment teams with the `DeploymentCreate` permissions were no longer able to create deployments. This was further narrowed down to teams that are also restricted by what project they can deploy for. https://help.octopusdeploy.com/discussions/problems/69012 https://help.octopusdeploy.com/discussions/problems/69010 __label__enhancement Facelift The codebase is really old and could use a lot of work. Here's a list of things that could be interesting to add/do: - [x] Add eslint with the airbnb config (#5) - [x] Upgrade to webpack v3 (#5) - [x] Integrate webpack into the server using webpack-dev-server and webpack-hot-middleware (#5) - [x] Add React-Hot-Loader to speed up client-side development (#5) - [x] Testing - [x] Add Jest (#6) - [x] Write basic tests (#6) - [x] Setup CI/CD (#7) - [x] Move away from foundation and use a css framework with a react wrapper for it like react-bootstrap (#5) - [x] Upgrade to React v16 (#5) - [x] Upgrade to react-router v4 (#5) "__label__bug FXCM/OANDA Market Holiday Hours FXCM/OANDA live feed isn't available on new year day GMT; holiday hours should be updated to reflect it; for the Cfd-oanda-[\*], Forex-oanda-[\*], Forex-fxcm-[\*], Cfd-fxcm-[\*] categories and ideally verify with another source. ``` ""holidays"": [ ""12/31/2017"", ""1/1/2018"" ] ```" "__label__bug After clicking ""INSTALL"" for a module, clicking refresh in your browser will insert any hooks twice in the DB After clicking ""INSTALL"" for a module, clicking refresh in your browser will insert any hooks twice in the DB " "__label__bug Reports from uploaded pictures posts not visilbe Step to reproduce: * as a user, upload a picture (only a picture) and post * report that post * as a podmin you don't have post url (to check the post) and no summary ![image](https://user-images.githubusercontent.com/6507951/35337859-81accf0a-011c-11e8-8c78-3d8f04b8d567.png) " __label__bug fix linux handshake https://circleci.com/gh/vapor/tls/169?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link __label__enhancement Target .NET Core for Postgress Doesn't at the moment: https://github.com/DbUp/DbUp/blob/release/4.0.0/src/dbup-postgresql/dbup-postgresql.csproj#L7 "__label__enhancement API to enable/disable a window <!-- Thanks for opening an issue! A few things to keep in mind: - The issue tracker is only for bugs and feature requests. - Before reporting a bug, please try reproducing your issue against the latest version of Electron. - If you need general advice, join our Slack: http://atom-slack.herokuapp.com --> * Electron version: 1.4.12 * Operating system: Windows 7 ### Expected behavior When a modal window is shown in a lazy manner, allow a manual (by code) disabling of parent window. Suggestions: - add option like `{..., disableParentImmediately: true, ...}` - provide an API interface to the function [NativeWindowViews::SetEnabled(bool enable)](https://github.com/electron/electron/blob/master/atom/browser/native_window_views.cc#L987) ### Actual behavior Actually is the parent window disabled only at the very moment of showing the modal window. The time between `new BrowserWindow(...)` and Event: 'ready-to-show' takes quite long time (cca 500ms) during which an user can take an action. I created a topic on the atom discussion: https://discuss.atom.io/t/modal-window-with-postponed-show-allows-interaction-with-a-parent-window/38094 In the end I had looked into the framework source code and I found that enabling/disabling of the window is a private feature of the atom in [NativeWindowViews::SetEnabled(bool enable)](https://github.com/electron/electron/blob/master/atom/browser/native_window_views.cc#L987) implementation, particularly in NativeWindowViews::Show(), NativeWindowViews::Hide(), NativeWindowViews::DeleteDelegate(). ### How to reproduce Create a window modal window, rendered from url and ensure that it is showed in a lazy manner and it takes at least a few ms. Maybe use some delay during the Event: 'ready-to-show' to ensure that. User will be able to click the parent. Example of modal window lazy opening: ``` function openWarningWindow(parent: string) { let winWarn = new BrowserWindow({ width: 400, height: 160, modal: true, parent: global[parent], title: ""Warning"", show: false, maximizable: false, minimizable: false, frame: false, resizable: false, thickFrame: true }); winWarn.setMenu(null); winWarn.loadURL(`${urlPrefix}/renderer.process.html?warning-window.view`); winWarn.once(""ready-to-show"", () => { winWarn.show(); }); } ``` Thank you guys." __label__bug Failed to clone a repo stuck on cloning animation __label__bug Gimmick: Math "__label__bug Help Wanted: loopback crashes at any attempt at creating ""BelongTo"" ""HasMany"" relation I have worked with loopback (v3) a few months back I did not encounter this before. Any attempt at creating a BelongTo - HasMany relation between two models end up in the app/loopback failing. To reproduce simply create any basic two models such as Category and Product and attempt to create the described relation. Note there is an egghead Loopback introduction course (very concise) which creates such models and the relation described. Creating this scenario always worked in the past. This time (after many attempts) it simply does not go through. One difference noticed from before was the addition in the generator of the two questions: ""Allow relation to be nested in API"" and ""Disable relation from being included"" The following shows the generator steps: ![generator](https://user-images.githubusercontent.com/9017114/35818108-9832171c-0ab8-11e8-850d-1af7c340e125.jpg) in separate terminal (win 10) the following occurs on completing the second relation steps: ![error](https://user-images.githubusercontent.com/9017114/35818151-b3779678-0ab8-11e8-8875-69bbb5dd81e3.jpg) I have tried in so many combination to bypass this error but nothing worked. Again, this never happened during mid last year. Finally, I am working under windows 10 and did not actually try this under macOS or Linux though both systems are available for me. Thank You " "__label__bug Fix Christmas Theme Color Scheme The Christmas theme is now Red & White for some reason, not Red & Green. Personally I consider Red & Green to be more Christmas like, but that's just me. Just close this if you disagree." "__label__enhancement Separate documentation site from library code As per discussion on #17, separating out the documentation site from the library code has advantages including, but not limited to: * dependencies can be added to the documentation site without bloating the library * it's easier to understand when making changes what impact those changes will have * more approachable for new contributers Making changes to this will require care to preserve the NPM packaging process and the documentation site publishing process. Changes to these may be necessary." __label__enhancement Vertical layout Does addon allow align tokens vertically? I'm using forms and vertical layout more relative to this. Also can you object to be used with vaading bindings? Like usual combobox? "__label__bug Dashboard icons get cut off when expanding on click - SQL Operations Studio Version: 12/18 RC1 Steps to Reproduce: 1. Navigate to the dashboard 2. Click on any icon that expands when clicked, like the refresh icon, the edit icon, or the ... icon 3. Observe that the icon gets cut off when it expands ![screen shot 2017-12-18 at 2 37 06 pm 3](https://user-images.githubusercontent.com/3758704/34131620-3551cb2a-e401-11e7-8c95-43a7942264ba.png) " "__label__bug [TW-16] Default column labels _Frédéric Mangano says:_ The default configuration contains English user-visible strings for column labels. Since translations provide translations for these, I think they should be left empty in the configuration. The attached patch illustrates a way to preserve undefined labels and provide relevant and localized labels in that case." "__label__bug Import protocol does prep like creating directories before protocol is successfully obtained If you put a dummy `protocolName` `importProtocol()`, it will wipe/recreate a directory with the same name." "__label__enhancement Улучшить систему сборки 1. Продумать поддержку включения в стороние проекты Создать файл `FindBurst.cmake` или сделать что-то подобное — нужно разобраться. 2. Довести до соответствия последнему слову симейк-техники Постараться уйти от оперирования переменными, а работать с ""библиотеками"". Использовать команды типа `target_` и иже с ними." __label__question Missing slash ? Are you sure you don't have a heading slash on [this line](https://github.com/bngsudheer/ansible-role-gcs_proxy/blob/master/tasks/main.yml#L23)? __label__enhancement Move files Add functions to allow moving of files and dirs (S3 to S3 copy without downloading). "__label__bug [Todoist] right-click tooltip isn't entirely visible ![screenshot 2014-11-05 at 16 15 52](https://cloud.githubusercontent.com/assets/655838/4920013/da1d049c-64fe-11e4-95ef-a30c72595fb2.png) As you can see, a part of the tooltip isn't visible. The dark side at the left is the end of the browser. " __label__enhancement Bump Node to 9.x But still support LTS __label__enhancement enhance two column layout __label__bug Single quotes are kept in the leaf names They shouldn't actually be showing up in the final tree. This could have an affect on #26. "__label__bug Machine won't start again after pressing stop For some reason my machine has stopped starting again after the stop button is pressed. It will stop immediately, but not move again until GC is restarted. This is a new behavior." "__label__enhancement [TW-951] Done should stop a task _Andy Kriger on 2011-01-02T11:42:15Z says:_ STEPS: Start a task and mark it done EXPECT: If I mark a task done, that also stops the task ACTUAL: The task is not stopped - I still have to do that manually Here is a sample session demonstrating what I mean: <pre> task 7 start task 7 info ID 7 Description Task title 2011/1/2 10:58 Started task Status Pending task 7 done task 7 info ID 7 Description Task title 2011/1/2 10:58 Started task Status Completed task 7 stop task 7 info ID 7 Description Task title 2011/1/2 10:58 Started task 2011/1/2 11:35 Stopped task Status Completed </pre>" "__label__enhancement Add character ability points Characters should have ability points. When one of the character's abilities is increased, the ability points should go down. It should fail to add ability points to an ability if there are insufficient ability points. Characters should have the following new properties: - `ability_points` (number) If you try to add more ability points to an ability than are available, an ""Exception"" should be thrown. Example: ```python from api import characters character = characters.create(ability_points=5) character = characters.allocate_ability_points(character, strength=3) assert character['abilities']['strength'] == 3 assert character['ability_points'] == 2 character = characters.allocate_ability_points(character, agility=3) # Exception: Insufficient ability points ``` Requires #4" "__label__bug QR code scanner is removed from paired devices? QR code scanner is removed from paired devices. Problem exist on MAC. On windows it is already solved. ## Current Behavior QR scaner is not visible at the header of accept invitation view. ## Steps to Reproduce (for bugs) Chat -> Add a new device -> Accept invitation from the other device -> in the header user should see the qr code scanner ## Expected Behavior * Accept invitation view has a QR code scanner ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * Version used: * Environment name and version (e.g. Chrome 39, node.js 5.4): * Operating System and version (desktop or mobile): * Link to your project: " "__label__bug Unable to change the size of the tick text (sv_textsize) Hey, I'm unable to change the size of the font inside the speedometer ring (ticks) ![whatsapp image 2018-02-02 at 9 23 59 pm](https://user-images.githubusercontent.com/22236053/35742154-a1d669a4-085f-11e8-88f0-563fc48ed82c.jpeg) sv_textsize is not functioning for the awesome speedometer. Please help !! :) " "__label__enhancement Full test suite for ASGI encoding Currently, there are only a few tests for ASGI encoding and decoding to/from HTTP (https://github.com/django/daphne/blob/master/daphne/tests/test_http.py), and none at all for WebSockets. In order to make sure we keep to the spec, it would be good to have full coverage for both protocols. " "__label__enhancement CDP4Common NotThing should belong to CDP4Common namespace, not CDP4Common.Poco ### Prerequisites - [x] I have written a descriptive issue title - [x] I have verified that I am running the latest version of the CDP4-SDK - [x] I have searched [open](https://github.com/RHEAGROUP/CDP4-SDK-Community-Edition/issues) and [closed](https://github.com/RHEAGROUP/CDP4-SDK-Community-Edition/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported ### Description CDP4Common NotThing should belong to CDP4Common namespace, not CDP4Common.Poco. There is a typo in word ""methos"". It should be ""method"". ### Steps to Reproduce See the source code. ### System Configuration <!-- Tell us about the environment where you are experiencing the bug --> - CDP4 version: - [ ] CDP4Common: - [ ] CDP4JsonSerializer: - [ ] CDP4Dal: - [ ] CDP4JsonFileDal: - [ ] CDP4ServicesDal: - [ ] CDP4WspDal: - [ ] Other: - Environment (Operating system, version and so on): - .NET Framework version: - Additional information: <!-- Thanks for reporting the issue to CDP4-SDK! -->" "__label__bug component.set doesn't update ui when called from an awaiting promise Repro: https://svelte.technology/repl?version=1.53.0&gist=bfd178f583f0be414daadb871a1e18d6 As shown in the repl, when calling this.set at the end of the awaited promise's chain, it fails to update the ui. The second button with the setTimeout works (albeit with a flash)." __label__bug Hide map block on certain pages. __label__enhancement Add Progress Ring to D3.EZ Create a new Progress Ring type chart. Either for 'status bar' type use or for presenting categorical data like a bar chart. Examples/ideas: http://codepen.io/rogerxu/pen/rLqvd http://www.brightpointinc.com/clients/brightpointinc.com/library/radialProgress/index.html "__label__question Smart timing not working ? Dear author, I'm using ReloadMatic 1.5.2; I thought that smarttiming feature would prevent the page reload while I'm typing text; Currently, I'm typing in an online chat system, and the page reloads while I'm in the middle of a phrase, so I loose what I've already typed when page reloads. Did I miss someting ? thanks for your support, I like your extension, it's very well done and handy. Chris " __label__enhancement use gulp 4 I think this one is quite needed to achieve optimal default gulp task. We need some gulp.parallel and gulp.series love here "__label__bug ""Cancel payment at gateway"" doesn't work in conjunction with ""revoke access now"" It's because ""revoke access now"" runs first, then when we process the gateway cancellation further down, the member then fails `$member->can_cancel()`. We just need to run the gateway cancellation first." "__label__enhancement Allow user to define manual test steps By default, framework creates automatically test steps based on method calls. Every PageObject method called from a Test class is a step (for e.g) If this behavior is not what you want, you can disable it by setting `manualTestSteps` as test parameters. Then, in Test class or PageObject sub-class, add `addStep(""my step name"")` where you want a step to be created For each step, a snapshot is done and step duration is computed Final step is still automatic" "__label__bug Cube 'shake' gone away? Apologies if I've missed this elsewhere, but both my Cubes 'shake' functionality seems to have stopped working. [2018-2-6 19:50:35] [Hue] lumi.sensor_cube: state changed event [2018-2-6 19:50:35] [Hue] lumi.sensor_cube: sensor buttonevent 7000 on 2018-02-06T19:45:45 [2018-2-6 19:50:35] [Hue] lumi.sensor_cube Cube: homekit button undefined [2018-2-6 19:50:36] [Hue] lumi.sensor_cube: state changed event [2018-2-6 19:50:36] [Hue] lumi.sensor_cube: sensor buttonevent 7007 on 2018-02-06T19:50:35 [2018-2-6 19:50:36] [Hue] lumi.sensor_cube Cube: homekit button undefined I've deleted/added new rules in Eve and Home.app - not sure where to look next. " __label__question Clickable links to secondary languages in translate view When translating a string you can see a list of translations in your [secondary languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages) if they've been translated. Would be nice to have a clickable link to quickly go to the translation for a secondary language. "__label__bug search result highlights break image links using ""products"", and viewing console you'll see breaking links. We need to tweak the regex replace a little. " "__label__bug Closing button for sidebar cannot be seen when the picture is dark. ### Steps to reproduce 1. Upload a dark picture. 2. Open sidebar. ### Expected behaviour A clear 'X' visible that you can see and click. ### Observed behaviour The 'X' Closing button is not visible. ![screen shot 2017-05-16 at 09 23 42](https://cloud.githubusercontent.com/assets/9048796/26094354/f6fb2c54-3a19-11e7-82cd-83bb3c2c3c3e.png) **ownCloud version:** {""installed"":""true"",""maintenance"":""false"",""needsDbUpgrade"":""false"",""version"":""10.0.0.12"",""versionstring"":""10.0.0"",""edition"":""Enterprise"",""productname"":""ownCloud""} **Browser:** Chrome cc @felixheidecke " __label__bug New viro button access Virologist doesn't have access to the new virology monkey pen shutters button. __label__enhancement Clarify Widget Label on medium and large sizes > One small issue here is that the text in the widget says press here when it should say double tap "__label__enhancement ABySS 2.0.2 We are getting later run-errors with ABYSS 2.0.2 in conjunction with Trans-ABySS, which is basically a known issue. https://github.com/bcgsc/abyss/issues/159 > reads containing non-ACGT characters make: *** No rule to make target 'transabyss-1.adj'. Stop. If there is anything to instrument this on the pipelines used for debugging, would be happy to help. " "__label__bug Support docker storage opts with numbers <!-- This form is for bug reports and feature requests If you need help, feel free to reach us through our slack. You can join the Kismatic slack at http://slack.kismatic.com --> Thanks to @robb-foster-ck for reporting this. **Is this a BUG REPORT or FEATURE REQUEST?**: BUG REPORT **What happened**: When passing in: ``` docker: storage: opts: ""overlay2.override_kernel_check"": true ``` The installation failed with: ``` error installing: error recording plan file to runs/apply/2018-02-07-10-25-43/kismatic-cluster.yaml: Empty Stack ``` **What you expected to happen**: The installation to succeed as this is a valid docker option and a valid `yaml` key. **How to reproduce it (as minimally and precisely as possible)**: Set the plan file described above ^ or any other `yaml` key with a number in it. **Anything else we need to know?**: This happens when the installer tries to parse the plan file because the regex for keys used did not include numbers `[^a-zA-Z]*([a-z_\-A-Z.\d]+)[ ]*:` **Environment**: - Kismatic version (use `kismatic version`): `v1.8.0`" "__label__bug Resetting random color when editing schedule 1. Dodajesz losowanie koloru w cyklu minutowym. 2. Zapisujesz 3. Edytujesz 4. Zmieniasz na cykliczny co 5 min. Rezultat. Losowy kolor zmienia się na wybrany, a jasność ustala się na zero" "__label__enhancement [TW-220] task color legend sorted by precedence _David Patrick says:_ This awesome report would be even better if it were sorted in the order in which it will be applied, rather than alphabetically." "__label__bug MailScanner unable to require modules I just updated MailScanner to the current version and then `MailScanner --lint` failed to require Mail::SpamAassassin and DBI modules: ``` You want to use SpamAssassin but have not installed it. at /usr/share/MailScanner/perl/MailScanner/SA.pm line 179. I will run without SpamAssassin for now, you will not detect much spam until you install SpamAssassin. at /usr/share/MailScanner/perl/MailScanner/SA.pm line 180. WARNING: You are trying to use the Processing Attempts Database but your DBI and/or DBD::SQLite Perl modules are not properly installed! at /usr/sbin/MailScanner line 1745. ERROR: Could not connect to SQLite database /var/spool/MailScanner/incoming/Processing.db, either I cannot write to that location or your SQLite installation is screwed. at /usr/sbin/MailScanner line 1756. ``` To find out what caused this I modified /usr/share/MailScanner/perl/MailScanner/SA.pm for more debug output: ``` ... unshift @INC, ""$val/lib/perl5/site_perl/$perl_vers""; } # Now we have the path built, try to find the SpamAssassin modules use Data::Dumper; eval ""require Mail::SpamAssassin""; if ($@) { MailScanner::Log::WarnLog(""failed"" . Dumper($@)); MailScanner::Log::WarnLog(""failed"" . Dumper(@INC)); } else { MailScanner::Log::WarnLog(""succ""); } my $required_sa_class = 'Mail::SpamAssassin'; unless (eval ""require $required_sa_class"") { ... ``` This gave me the following additional output when running `MailScanner --lint`: ``` Checking for SpamAssassin errors (if you use it)... failed$VAR1 = 'Can\'t locate Mail/SpamAssassin.pm: /usr/share/MailScanner/perl/Mail/SpamAssassin.pm: Permission denied at (eval 75) line 2. '; at /usr/share/MailScanner/perl/MailScanner/SA.pm line 171. failed$VAR1 = '/usr/sbin'; $VAR2 = '/usr/sbin/MailScanner'; $VAR3 = '/usr/share/MailScanner/perl'; $VAR4 = ' /usr/share/MailScanner/perl'; $VAR5 = '/etc/perl'; $VAR6 = '/usr/local/lib/x86_64-linux-gnu/perl/5.24.1'; $VAR7 = '/usr/local/share/perl/5.24.1'; $VAR8 = '/usr/lib/x86_64-linux-gnu/perl5/5.24'; $VAR9 = '/usr/share/perl5'; $VAR10 = '/usr/lib/x86_64-linux-gnu/perl/5.24'; $VAR11 = '/usr/share/perl/5.24'; $VAR12 = '/usr/local/lib/site_perl'; $VAR13 = '/usr/lib/x86_64-linux-gnu/perl-base'; at /usr/share/MailScanner/perl/MailScanner/SA.pm line 172. You want to use SpamAssassin but have not installed it. at /usr/share/MailScanner/perl/MailScanner/SA.pm line 179. ``` The perl module is available at /usr/share/perl5/Mail/SpamAssassin.pm: ``` # ls -l /usr/share/perl5/Mail/ total 480 -rw-r--r-- 1 root root 6821 May 18 2016 Address.pm -rw-r--r-- 1 root root 3797 May 18 2016 Address.pod -rw-r--r-- 1 root root 6320 May 18 2016 Cap.pm -rw-r--r-- 1 root root 3830 May 18 2016 Cap.pod drwxr-xr-x 4 root root 4096 Mar 28 2017 DKIM -rw-r--r-- 1 root root 2058 Nov 28 2012 DKIM.pm drwxr-xr-x 2 root root 4096 Jul 7 2017 Field -rw-r--r-- 1 root root 4794 May 18 2016 Field.pm -rw-r--r-- 1 root root 5021 May 18 2016 Field.pod -rw-r--r-- 1 root root 1258 May 18 2016 Filter.pm -rw-r--r-- 1 root root 2861 May 18 2016 Filter.pod -rw-r--r-- 1 root root 14359 May 18 2016 Header.pm -rw-r--r-- 1 root root 7910 May 18 2016 Header.pod drwxr-xr-x 3 root root 4096 Jul 7 2017 IMAPClient -rw-r--r-- 1 root root 103730 Feb 9 2016 IMAPClient.pm -rw-r--r-- 1 root root 140791 Jan 4 2016 IMAPClient.pod -rw-r--r-- 1 root root 12291 Dec 27 2016 Internet.pm -rw-r--r-- 1 root root 10554 May 18 2016 Internet.pod drwxr-xr-x 2 root root 4096 Jul 7 2017 Mailer -rw-r--r-- 1 root root 4842 Dec 27 2016 Mailer.pm -rw-r--r-- 1 root root 3978 May 18 2016 Mailer.pod -rwxr-xr-x 1 root root 1749 Nov 28 2012 sample_mime_lite.pl -rw-r--r-- 1 root root 1154 May 18 2016 Send.pm -rw-r--r-- 1 root root 2868 May 18 2016 Send.pod drwxr-xr-x 10 root root 4096 Dec 15 16:53 SpamAssassin -rw-r--r-- 1 root root 70697 Apr 28 2015 SpamAssassin.pm drwxr-xr-x 6 root root 4096 Jul 7 2017 SPF -rw-r--r-- 1 root root 2369 Jun 7 2015 SPF.pm -rw-r--r-- 1 root root 3211 May 18 2016 Util.pm -rw-r--r-- 1 root root 3159 May 18 2016 Util.pod ``` The path where it tries to include the module from (/usr/share/MailScanner/perl/Mail/SpamAssassin.pm) does not exist: ``` # ls -l /usr/share/MailScanner/perl/ total 12 drwxr-xr-x 2 root root 4096 Jan 12 18:05 custom drwxr-xr-x 2 root root 4096 Jan 22 11:39 MailScanner -rw-r--r-- 1 root root 1850 Jan 2 18:33 MailScanner.pm ``` So the perl module is there and it is in the include path but the `require ` still fails. Any idea what can cause this? I can remember that I had the problem at least once before but somehow the error disappeared after some time System is Debian Stretch with MailScanner v5.0.7-1 (deb.tar.gz install), perl 5.24.1-3+deb9u2" "__label__enhancement [TW-130] Tasks should infer due date information through dependency chains. _Peter Lewis says:_ I'm not sure if this counts as a bug report or a feature request. I guess it depends on how you use taskwarrior :-) Suppose I need a new bike for the weekend. Basically, I can do: % task add buy new bike due:friday Created task 1. But I don't know what to get yet. % task add research about bikes Created task 2. % task 1 dep:2 Modified 1 task. Now, task 1 requires task 2 to be done first, but since task 2 doesn't have a due date, it won't float to the top of my task list. If I have a long task list, it might actually not be shown in a reasonable console-sized report. Task 1 will probably be shown, but it will be blocked. My point here is that actually task 2 should inherit some information about when it is due from task 1. I.e. in this case it must also be completed before Friday. This means that it will appear near the top of the list when the due date is approaching. Even worse, if I am using a report which hides blocked tasks (task 1 in this case), then neither will show up. It's possible that I've configured something wrong which causes this, but it's a scenario I keep coming up against. Thanks." "__label__bug Fixes to parsing in /listproject Currently in the **Help Needed?** and **Tags** fields, they are comma delimited, but for something like ""Tag1, Tag2"" when split into the array in the component, the array will look something like ``` [""Tag1"", "" Tag2""] ``` where there is an empty space before Tag2, we should get rid of that for both of those. " "__label__enhancement Send heartbeat information to skadi-endor As a user, I want a heartbeat sent to skadi-endor. This heartbeat should contain a health check for the server. " __label__bug UIView's height had some error? before the input ![simulator screen shot 2016 7 27 14 08 58](https://cloud.githubusercontent.com/assets/238707/17165552/bea6d5bc-5403-11e6-89c0-e374d01aee86.png) after ![simulator screen shot 2016 7 27 14 04 00](https://cloud.githubusercontent.com/assets/238707/17165465/29183ea0-5403-11e6-99f3-3e1f48ae23e2.png) MacOSX 10.11.5 XCode 7.3.1 AwesomeTextField 0.1.0 (install from cocoapods 0.1.0) "__label__bug consensus: defensive watch reloads We've observed a production bug where, during Etcd instability / network partition, the consensus allocator's `RetryWatcher` appears to miss / not receive expiration watch updates from Etcd. The symptoms are that the watcher continues to receive and patch ongoing updates into it's copy of the tree after it re-establishes a connection to Etcd, but a set of keys which have in actuality long-since expired, never have corresponding expiration events received & patched in. What's odd about this is that the RetryWatcher implementation will perform a full tree reload on basically any kind of error, so this appears to be a fully silent omission (as a surfaced network error or Etcd index error would have triggered a reload). We need a means to detect that this has happened, and trigger a full reload from Etcd in response to it." "__label__bug Unable to enable/disable extensions on version 58.0! Hi, First, thank you for the new version of Iridium. After updating on v.58.0, noticed that I'm unable to play around with my extensions. I can install them with no problems, but I can't disable or to delete if I want, even after a ""reset settings""! Tested both versions of Iridium 32/64bit, portable/standalone, on two different PCs, both with Win7 Ultimate 64bit. Also I tried a clean install, but same result. :( thanks " "__label__enhancement Read Only Chats We'd like to add a list of departments that users have read-only access to. For example, an agent in our service department would be able to view chats in the parts department but would not be able to reply to them." "__label__bug exception when issuing concurrent oap requests to same node ``` could not execute {'format': 'json', 'timestamp': '2018-02-02 11:15:48.291377+00 :00', 'data': {'function': 'info_GET', 'token': 'myToken', 'args': {'mac': '00-1 7-0d-00-00-38-06-67'}}, 'command': 'oap', 'type': 'mote', 'id': '00-17-0d-00-00- 38-06-67'}: Traceback (most recent call last): File ""C:\Users\twatteyne\Desktop\solmanager-develop\solmanager.py"", line 241, in from_server_cb res = func(**args) File ""C:\Users\twatteyne\Desktop\solmanager-develop\..\smartmeshsdk\libs\Smart MeshSDK\utils\JsonManager.py"", line 554, in oap_info_GET resource = 'info', File ""C:\Users\twatteyne\Desktop\solmanager-develop\..\smartmeshsdk\libs\Smart MeshSDK\utils\JsonManager.py"", line 802, in _oap_send_and_wait_for_reply raise SystemError('busy waiting for response') SystemError: busy waiting for response ```" "__label__enhancement Game Abstraction Project ## Goal Support as many games as possible. Currently, twinject is written to solely support th08. Some abstractions need to be made in order to support multiple games. ## General Behaviour The way the games have worked has changed a lot in the last 20 years. Thus, in order to make abstractions, we must use what is common between all the games. - Injection (Detours) - Graphical control for overlays (Direct3D) - Input control for player control (DirectInput) - Frame timing information (Direct3D) - Entity/relevant data (game-specific) ## Abstractions Required The following concepts must be abstracted: - Hooking Direct3D and DirectInput - Hooking frame end event and injecting tick code - Game specific entity processor (this is a difficult one) - Game specific code patches to correct unintended behaviour - Game specific player logic, to adapt to game mechanics (UFOs, time orbs etc.) - Game specific bot parameters (deathbomb threshold, safety threshold, aggressiveness) ## Process Change An overhaul needs to be made to the general flow of the bot's workings. The following steps will describe the new process the bot will operate in per frame: 1. **Information Gathering** - Update data table with gathered information regarding game state 2. **Processing** - Use data table to calculate frame action 3. **Action** - Execute frame action" __label__enhancement ZWC-8 Add responsive design to header logo __label__bug sos shows ignored files as deleted "__label__enhancement enhancement API idéa : Get from which playlists a song is played Hi there, It will be a great feature if API can returns the playlist from which a song is played. I use Scheduled Playlist to run differents radio shows and it would be great to display the current running shows on my website frontend, based on what API returns. Cheers!" "__label__enhancement Compiler config sent to clients is overly long Currently the `compilerExplorerOptions` sent to the client is pretty large. Mostly it's due to the number of compilers we now have (which is fine), but we can trim down the options a bit. e.g. we don't need to send things like `compilerType`, `objdumper`, `options`, `postProcess` and so on (only the backend needs these)." "__label__bug [at_sp2_core] Unable to compile on i686 ``` configure: error: Package requirements (xproto >= 7.0.13 x11 >= 1.6 xextproto >= 7.0.3 xext >= 1.0.99.1 inputproto >= 2.2.99.1) were not met: No package 'xext' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables XI_CFLAGS and XI_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ```" "__label__enhancement Display SUT values in results Instead of standard messages, these values could be presented by reporters so that they can be parsed by a supervision system" "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/fpUn_HC5AXgZa-8jwjKoK27nO4riiDX8wu54iylXcVETEaB4QhlPU8DLxdYg7Mx10/PWerkNa1L19-BGdaUn5Ai6HPqfqnHv14T7Pw5jDqo4Qi5grO2ueG5SFgmbl50jzg0/ynpvSYrLDl1Y4SX0nFgX_wEEjeW0i6bYFCI6euBcxyw1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug force close on changing language to spanish 1. install the game 2. start new game 3. change language to spanish 4. relaunch the app, and happens a force close (windows warns it will close the app) if i reinstall the game i can play with it until i change to spanish again. once spanish is changed, the force close appears again :-( perhaps is because i changed language in the middle of a game? how can i delete the game and after change the language? " "__label__bug areComponentsEqual doesn't work? ### Description I've been trying to implement a fix for an issue I had an react-bootstrap (https://github.com/react-bootstrap/react-bootstrap/issues/2963), but I can't seem to get `areComponentsEqual` to work like it says it should. In the simplest example, I took the `webpack` example and modified App.js to be ```javascript import React from 'react' import { hot, areComponentsEqual } from 'react-hot-loader' import Counter from './Counter' const App = () => { const element = <Counter/> console.log(areComponentsEqual(element.type, Counter)) return ( <h1> Hello, world.<br /> <Counter /> </h1> ) } export default hot(module)(App) ``` ### Expected behavior `true` is printed in the console ### Actual behavior `false` is printed in the console Is there something I'm missing here or doing wrong? ### Environment React Hot Loader version: 4.0.0-beta.18 Run these commands in the project folder and fill in their results: 1. `node -v`: v8.4.0 2. `npm -v`: 5.6.0 Then, specify: 1. Operating system: OSX Sierra 2. Browser and version: Chrome 63.0.3239.132 I can create a full demo repo but this seems straightforward. " __label__bug Users app - Display bug when dragging ID Provider config - Edit a user store - Drag & move an ID Provider config ![Screen Shot 2018-02-07 at 12.44.19.png](https://images.zenhubusercontent.com/58a5657151aa2c3057749a34/6083e58b-eb11-4c04-8a70-ed5a2d3caf4d) "__label__bug Project name validation for WebStorm. As noted by @ksdboasit in https://github.com/flutter/flutter-intellij/issues/1058, the new project name validation code does not seem to apply to WebStorm. > I tried the same in WebStorm (2017.1.3), and here there was no initial validation. It just failed to create the project when using an upper case letter. @alexander-doroshko : we're using `io.flutter.module.FlutterModuleBuilder#validateModuleName` here; is there a better approach? How do you recommend validating names for WebStorm project creation?" "__label__bug Unhandled exception (#4fff5fa9) ``` Commix version: 2.3-dev#23 Python version: 2.7.12 Operating system: posix Command line: commix.py -u ********************************** --crawl=2 --level=3 ``` ``` Traceback (most recent call last): File ""commix.py"", line 31, in <module> import src.core.main File ""main.py"", line 1163, in <module> main(filename, url) File ""main.py"", line 425, in main url = crawler.crawler(url) File ""crawler.py"", line 161, in crawler for check_url in output_href: TypeError: 'NoneType' object is not iterable ```" "__label__enhancement cbSFS (composite bSFS) for large sample sizes For large sample sizes, *i.e.* `n > 10` in a single population or `n1,n2 > 4` in a two population sample, the use of the straightforward bSFS is time inefficient. The main idea of the cbSFS (or composite bSFS) is to subsample multi-population data as specified by the user." __label__enhancement Sync with Confluence - Add feature of syncing with Confluence. __label__enhancement Support opus-recorder 4.0.0 Opened a ticket at https://github.com/chris-rudmin/opus-recorder/issues/138 __label__enhancement Encrypted fields should use random iv Currently all symmetrically encrypted fields use static iv. It would be better to switch to use random iv. __label__bug Log out option? Seems like there is no option for a user to log out? Or is it very hidden? I guess the user button should give a drop-down like other themes do it? __label__bug Recaptcha register texts There are no texts for captcha error messages on register view. Check it out before merging #16 __label__enhancement Ignore validation if view is gone or invisible "__label__bug H2 分页错误 H2 分页的时候报错,SQL 语句的解析应该有点问题,在解析 H2 SQL 的时候并没有把 SQLSelectQueryBlock 解析为 MySqlSelectQueryBlock。 测试了 1.1.4 - 1.1.6,都有这个问题。 ` PagerUtils.limit(""SELECT * FROM test"", JdbcUtils.H2, 0, 10); ` 报类型转换错误 ``` java.lang.ClassCastException: com.alibaba.druid.sql.ast.statement.SQLSelectQueryBlock cannot be cast to com.alibaba.druid.sql.dialect.mysql.ast.statement.MySqlSelectQueryBlock at com.alibaba.druid.sql.PagerUtils.limitQueryBlock(PagerUtils.java:108) at com.alibaba.druid.sql.PagerUtils.limit(PagerUtils.java:97) at com.alibaba.druid.sql.PagerUtils.limit(PagerUtils.java:76) at com.alibaba.druid.sql.PagerUtils.limit(PagerUtils.java:72) ```" "__label__enhancement Создание ТЗ проекта Разработать техническое задание на сайт в соответствие с требованиями. Формат файла "".md""" "__label__bug App lädt unter iOS nicht Safari (iOS) wirft folgenden Fehler: ``` Error: Mismatched anonymous define() module: function (t,e){function i(i,n){var a=t(i);a.data(""hammer"")||a.data(""hammer"",new e(a[0],n))}t.fn.hammer=function(t){return this.each(function(){i(this,t)})},e.Manager.prototype.emit=function(e){return function(i,n){e.call(this,i,n),t(this.element).trigger({type:i,gesture:n})}}(e.Manager.prototype.emit)} ```" "__label__bug Concat flattens arrays unexpectedly ``` Lazy([1,2]) .concat(Lazy([3, [4,5]])) .toArray() // Actual: [1, 2, 3, 4, 5] // Expected: [1, 2, 3, [4, 5]] ``` I don’t think this is the expected behaviour. FWIW, Underscore behaves as I expected: ``` _([1, 2]).concat([3, [4, 5]]) // Result: [1, 2, 3, [4, 5]] ``` The problem is that `ConcatenatedSequence` calls `flatten` internally, and `flatten` flattens the sequence recursively. I think this illustrates my point in #125 quite well :-). " __label__bug Do not rewrite options with defaults on plugin reactivation <!--- Provide a general summary of the issue in the Title above --> <!--- Not every section will apply for every issue --> ## Plugin version 1.x ## Current Behavior > https://wordpress.org/support/topic/activating-the-plugin-clears-previous-settings/ > https://wordpress.org/support/topic/lost-setting-data-after-plugin-deactivation/ Activating the plugin simply overwrites whatever may have already been stored in the `wp_mail_smtp` option in `wp_options`. ## Expected Behavior Settings should be reused. __label__enhancement Handle deserialization using a factory Each FifoObject has now its own type. We now must deserialize it using a [Factory](https://en.wikipedia.org/wiki/Factory_(object-oriented_programming)) and implement it in : https://github.com/rainbru/librlgl/blob/a93489d8c299ed4cb0ce366f94d5c6783e916179/src/lib/FifoStream.cpp#L77-L82 __label__bug msiSetDataType() does not update all replicas of a logical path "__label__enhancement [TW-62] Color Offsets _John Florian on 2010-09-18T18:20:14Z says:_ I find that color.alternate improves the output readability considerably when tasks get wrapped over several lines. Unfortunately that benefit is sometimes lost due to a higher ranking color, e.g., color.overdue. With a color scheme that keeps all choices distant enough from each other, this loss could be overcome by introducing color offsets. For example: <pre> color.alternate=-rgb111 </pre> It's not hard to imagine this applying to other attributes as well or instead. Maybe some people would have pri.H brighter than pri.M and pri.L dimmer than pri.M. I suspect restrained use would be best, but I suspect one could get very creative with this." "__label__bug Renderers using opengl shader function are not displayed after deleting one of the views in the multi-view mode. Shader programs are shared among the display contexts belonging to the same scene, however, they are destroyed in the dtor of on of the sibling display context in the current impl. They should be destroyed in the dtor of the last display context belonging to the same scene." "__label__bug EWBF.ps1 Hi @UselessGuru Just tried your new master and found this. 2018-02-02 17:01:57 INFO: Getting miner information... ForEach-Object : Cannot bind parameter 'RemainingScripts'. Cannot convert the ""Sleep"" value of type ""System.String"" to type ""System.Management.Automation.ScriptBlock"". At D:\Downloads\MPM\UselessGuru\MultiPoolMiner-master\Miners\EWBF.ps1:47 char:12 + $Devices | ForEach-Object { + ~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidArgument: (:) [ForEach-Object], ParameterBindingException + FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.ForEachObjectCommand " __label__enhancement 这个issues就类似一个贴吧嘛,百度一搜,出来一堆专业术语,还是得自己搞才能弄明白。行了,小issue以后整理bug的任务就交给你了。 哈哈,欢迎大家多来我的项目吐槽(又自言自语了...)! __label__enhancement [TW-841] iPhone plug-in _David Patrick on 2009-05-29T15:22:58Z says:_ they're out there "__label__enhancement Add Test Case Name in Log File Add test case name in log, for better identification of issues." __label__bug Recent emotes do nothing when clicked most of the time "__label__enhancement Allow asynchronous web services For the moment, all the services I wrote had the ""Blocking"" annotation. It works pretty well, but its is not an ideal solution for an asynchronous framework like vertx. It would be interesting to have a way of writing asynchronous methods, either with the Jax-RS 2.0 [AsyncResponse](https://docs.oracle.com/javaee/7/api/javax/ws/rs/container/AsyncResponse.html) (which is quite complex) or by letting the methods have a way of calling a ""resume"" method with the result as a parameter." "__label__bug Particle doesn't stop I don't undestand why the updateFunction of my particle system is still called after I stop the system. See console in this playground : https://www.babylonjs-playground.com/#DJVT90 I stop the particle system after a 1 second timeout and the console show that the updateFunction is still called. Thanks, Pichou" __label__enhancement Add dates to the Commands Each command from the file `commands.proto` must contain a date when it was created. __label__bug Master Branch AppVeyor badge links to SQLServerDsc The badge URL needs to be corrected. __label__question May need encapsulation - User.documents In [User.java](https://github.com/lenargum/libraryProject/blob/User-Documents-Connection/src/User.java) `document` field is public. Shouldn't it be encapsulated? ```Java . . . private String phoneNumber; private int id; public List<Document> documents = new LinkedList<>(); // Here . . . ``` __label__enhancement TODO: 添加init命令 初始化一个基础的项目结构 __label__bug Maximum length of all nm tags in SEPA DD generator The maximum length of 70 chars of any nm tag is not checked. Also this should be checked in appropriate input fields of the SEPA form. __label__bug Stats vs. a queued for approval project What type of report is this: | Q | A | ---| --- | Bug report? | X | Feature request? | | Enhancement? | ## Description: Generating stats on a project in approval queue crashes out with an error. Correct behavior should allow for stats creation. ## If a bug: | Q | A | --- | --- | Deploy version | 3.6.6rc ### Steps to reproduce: 1. Queue changes for approval w/o approving 2. run `deploy --stats [project]` 3. Witness the glory: ``` There is changed code already queued. Approve or deny it before attempting another deployment. /tmp/stats: No such file or directory Killed by signal 1. Exiting. ``` __label__bug Built-in script editor not working **Godot version:** 3.0 Stable **OS/device including version:** Ubuntu 17.10 **Issue description:** 100% when I try to open scripts in the built in editor it shows up empty. I can't even see the scripts in the list or anything. This makes it impossible for me to be able to do any scripting. **Steps to reproduce:** 1. Start the editor 2. Create a script 3. Try to open it **Minimal reproduction project:** I tried the 2D Rigidbody demo and the 2D Kinematic demo "__label__enhancement Description für Artefakttypen einführen Nicht nur Artefakte, sondern auch Artefakt-Typen sollten eine Beschreibung haben. Markdown-enabled. Soll als Tooltip beim Hovern über jedem angezeigten Artefakttyp angezeigt werden." __label__enhancement Change the smoothing method in FiberFlatRecipe Current method `savgol_filter` smooths too much. We need something that keeps medium scale variations __label__enhancement [공통][기능] 브러시 크기 미리보기 "__label__bug Path to file has an undefined part when file is at the root level of the config directory Folder & filename parsing should be strengthened in the event the file is at the root level of the config directory as the URI has an undefined part in its string representation, leading to a read error." "__label__bug geoserver not found . error 404 : after installing geonode 2.8 rc11 on ubuntu 16.04 while running 'sudo geonode-updateip 127.0.0.1 ' I get File ""/usr/lib/python2.7/dist-packages/geoserver/catalog.py"", line 216, in get_xml raise FailedRequestError(""Tried to make a GET request to %s but got a %d status code: \n%s"" % (rest_url, response.status, content)) geoserver.catalog.FailedRequestError: Tried to make a GET request to http://localhost:8080/geoserver/rest/workspaces.xml but got a 404 status code: <!DOCTYPE html><html><head><title>Apache Tomcat/8.0.32 (Ubuntu) - Error report

HTTP Status 404 - /geoserver/rest/workspaces.xml

type Status report

message /geoserver/rest/workspaces.xml

description The requested resource is not available.


Apache Tomcat/8.0.32 (Ubuntu)

" __label__bug Fix incorrect message positioning Most likely cause is a stale cache. "__label__bug [TW-1084] Confirmation dialog is lowercase for ""all"" _Federico Hernandez on 2009-12-07T18:32:05Z says:_ The confirmation dialog uses uppercase ""Y"" for yes (as an extra step for confirmation by using 2 keys), but the corresponding ""all"" is in lowercase." __label__enhancement Improve required coding standards __label__bug Games testing: APPARE garbled background tile graphics and sprites I don't know the PC-98 graphics system well enough to understand what is not being emulated properly here. ![orfield_000](https://user-images.githubusercontent.com/6245486/33809344-36d4aefc-ddaa-11e7-91b1-611d9ffc224d.png) __label__bug The client is tracking the wrong branch The client is tracking develop instead of master. This means that out of the box the client is not updated to the latest version even if the 'update all' script is executed. "__label__question Moya 11 Default Request Mapping? Migrating to Moya 11 generates error (see below) when overriding the MoyaProvider initializer with default values. Error: Default argument value of type '(Endpoint, (Result) -> Void) -> ()' cannot be converted to type 'MoyaProvider.RequestClosure' (aka '(Endpoint, @escaping (Result) -> ()) -> ()') Code: ```swift override init(endpointClosure: @escaping EndpointClosure = MoyaProvider.defaultEndpointMapping, requestClosure: @escaping RequestClosure = MoyaProvider.defaultRequestMapping, stubClosure: @escaping StubClosure = MoyaProvider.neverStub, callbackQueue: DispatchQueue? = nil, manager: Manager = MoyaProvider.defaultAlamofireManager(), plugins: [PluginType] = [AuthPlugin()], trackInflights: Bool = false) { super.init(endpointClosure: endpointClosure, requestClosure: requestClosure, stubClosure: stubClosure, callbackQueue: callbackQueue, manager: manager, plugins: plugins, trackInflights: trackInflights) } ``` How to assign a defaultRequestMapping?" "__label__enhancement Launch mosaics etc from launchmany.py & support daily runs `launchmany.py` *should* be all you need to create the whole set of outputs from scratch. That means: - Create all the tiles of LVMC - Create the 2001-2015 mean for each tile; obvious dependencies (used as baseline for flammability). `means.py` needs some upgrades to do this correctly! - Create each mosaic. Depends on tiles for that year, all mean tiles, previous mosaic if not first year. And obviously the launcher should not re-run jobs for files that exist and do not need updating (tiles/mosaic for current year). As of January 2018, we only cover the first of the above points. Ultimately, it should be possible to have this resubmit itself on a schedule for unattended runs to keep the archive up to date." "__label__bug Create stars rating component in CKeditor Please create stars rating component in CKeditor , rating in them shall be halves like ""component-rating"" component in Keditor ![capture1](https://user-images.githubusercontent.com/26510030/31876231-53c6f736-b7da-11e7-9439-59ce9476b95c.PNG) " "__label__enhancement Revision / History panel Idea is to show a list of changes of the open file in a panel / window, similar to Google Doc presentation This is possible according to APIs, right ? https://developers.google.com/drive/v2/reference/revisions https://www.dropbox.com/developers/core/docs#revisions " "__label__bug Dumper usage demo error I am a python beginner, I used [Dumper usage demo](https://github.com/Phynix/yamlloader#dumper-usage) and got error: Traceback (most recent call last): File ""test1.py"", line 7, in import yamlloader File ""/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/yamlloader/__init__.py"", line 12, in from . import ordereddict File ""/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/yamlloader/ordereddict/__init__.py"", line 5, in from .loaders import Loader, SafeLoader, CLoader, CSafeLoader File ""/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/yamlloader/ordereddict/loaders.py"", line 59, in class CLoader(OrderedLoaderMixin, yaml.CLoader): AttributeError: module 'yaml' has no attribute 'CLoader' How can I handle this error? " __label__bug Clear adequacy colors when method is changed Currently the adequacy colors / charts stay up when the distance/time method is changed. The colors should revert so that it is clear that they do not reflect the results of the currently selected adequacy method. "__label__question Why external hosting for images? I saw [here](https://github.com/freeCodeCamp/guides/blob/master/CONTRIBUTING.md#images) that we have to upload images to an external image hosting service. Why is that? Why can't we just put them in the git repo alongside with the articles? Would it make the repo to big or is it for some other reason? I think it would be good to explain why you ask to do that in the CONTRIBUTING.md, where it is asked. Thanks! --- > ✅️ By submitting this issue, I have verified the following - [x] [Checked](https://github.com/freeCodeCamp/guides/issues?q=is%3Aissue+is%3Aclosed) to see if the issue has already been discussed before. 🤔️ - [x] *If* proposing new content to be added, made sure enough details were provided. 🔍️" "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/gISGQx5uTO-flHOU19MbnQLpT4MluaV5rce-zO5V0Xh8m-Y7JVYFGB8twBPCiksR0/LwmC5lSaHSLpU-8BLp1PIAmlrJhkzfyl0wQGz0aSTxCQ18dviEHkmPLdH2mA7oKX0/MzYseRpTMRRsLuVJLll2UY32kQfYLJH_oHRTDQTGZnA1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__enhancement Make use of a UI library? "__label__bug Job not getting stopped when number of available hosts < 'minHosts' property This issue was observed with a specific forest configuration described below: A. This test was run on a 3 node cluster (rh7v-intel64-90-test-4/5/6.marklogic.com) with a forest (WriteBatcher-1,2,3) on each of the node which are associated with a db. 'WriteBatcher-1' is not configured for failover. 'WriteBatcher-3' is configured to fail over to host 'rh7v-intel64-90-test-5.marklogic.com'. 'WriteBatcher-2' is configured to fail over to host 'rh7v-intel64-90-test-4.marklogic.com' B. Now when 'ihb2' WB job is getting executed,nodes rh7v-intel64-90-test-6.marklogic.com is first stopped . 21:16:24.885 [main] ERROR c.m.c.d.HostAvailabilityListener - ERROR: host unavailable ""rh7v-intel64-90-test-6.marklogic.com"", black-listing it for PT15S The forest fails over to 'rh7v-intel64-90-test-5.marklogic.com'. The writing of document to db resumes once the failover is complete. C. Now 'rh7v-intel64-90-test-5.marklogic.com' is stopped. It gets blacklisted 21:17:02.508 [main] ERROR c.m.c.d.HostAvailabilityListener - ERROR: host unavailable ""rh7v-intel64-90-test-5"", black-listing it for PT15S D. After that, the job is stopped as available hosts < minHosts 21:17:02.772 [pool-1-thread-1] ERROR c.m.c.d.HostAvailabilityListener - Encountered [com.sun.jersey.api.client.ClientHandlerException: org.apache.http.NoHttpResponseException: The target server failed to respond] on host ""rh7v-intel64-90-test-5.marklogic.com"" but black-listing it would drop job below minHosts (2), so stopping job ""unnamed"". E. After that , retrying of failed batches keeps running infinitely 21:17:02.550 [main] WARN c.m.c.d.HostAvailabilityListener - Retrying failed batch: 132, results so far: 2640, uris: [/local/ABC-2620, /local/ABC-2621, /local/ABC-2622, /local/ABC-2623, /local/ABC-2624, /local/ABC-2625, /local/ABC-2626, /local/ABC-2627, /local/ABC-2628, /local/ABC-2629, /local/ABC-2630, /local/ABC-2631, /local/ABC-2632, /local/ABC-2633, /local/ABC-2634, /local/ABC-2635, /local/ABC-2636, /local/ABC-2637, /local/ABC-2638, /local/ABC-2639] F. The client process was killed after sometime and the client logs and stack trace have been attached. [Client log](https://github.com/marklogic/java-client-api/files/630193/exception.txt) [Stack trace](https://github.com/marklogic/java-client-api/files/630200/jstack.txt) Test: ``` @Test public void testFailOver() throws Exception{ try{ final String query1 = ""fn:count(fn:doc())""; final AtomicInteger successCount = new AtomicInteger(0); final MutableBoolean failState = new MutableBoolean(false); final AtomicInteger failCount = new AtomicInteger(0); WriteBatcher ihb2 = dmManager.newWriteBatcher(); ihb2.withBatchSize(20); //ihb2.withThreadCount(120); ihb2.setBatchFailureListeners( new HostAvailabilityListener(dmManager) .withSuspendTimeForHostUnavailable(Duration.ofSeconds(15)) .withMinHosts(2) ); ihb2.onBatchSuccess( batch -> { successCount.addAndGet(batch.getItems().length); System.out.println(""Success Host: ""+ batch.getClient().getHost()); System.out.println(""Success batch number: ""+ batch.getJobBatchNumber()); System.out.println(""Success Job writes so far: ""+ batch.getJobWritesSoFar()); } ) .onBatchFailure( (batch, throwable) -> { System.out.println(""Failed batch number: ""+ batch.getJobBatchNumber()); /*try{ System.out.println(""Retrying batch: ""+ batch.getJobBatchNumber()); ihb2.retry(batch); } catch(Exception e){ System.out.println(""Retry of batch ""+ batch.getJobBatchNumber()+ "" failed""); e.printStackTrace(); }*/ throwable.printStackTrace(); failState.setTrue(); failCount.addAndGet(batch.getItems().length); }); dmManager.startJob(ihb2); for (int j =0 ;j < 20000; j++){ String uri =""/local/ABC-""+ j; ihb2.add(uri, stringHandle); } ihb2.flushAndWait(); System.out.println(""Fail : ""+failCount.intValue()); System.out.println(""Success : ""+successCount.intValue()); System.out.println(""Count : ""+ dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue()); Assert.assertTrue(dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue()==20000); } catch(Exception e){ e.printStackTrace(); } } ```` " __label__enhancement 微信端有人at我的时候能自动翻译成telegram at 可以提一个 feature request (建议直接去 v2 的 ews repo "__label__bug Editing user roles and trying to save results in ""Error trying to save the user"" ### Issue description Fresh install of Streama 1.5.1 using MySQL (MariaDB) database. Editing a user and enabling or disabling roles, produces a ""Error trying to save the user"" when trying to save. ### Expected Behaviour It should be saved ### Actual Behaviour The error ""Error trying to save the user"" pops up and server has this stack trace: ``` ERROR org.apache.catalina.core.ContainerBase.[Tomcat].[localhost] - Exception Processing ErrorPage[errorCode=0, location=/error] java.lang.IllegalStateException: There was a problem retrieving the current GrailsWebRequest. This usually indicates a filter ordering issue (the 'springSecurityFilterChain' filter-mapping element must be positioned after the 'grailsWebRequest' element when using @S at grails.plugin.springsecurity.web.access.intercept.AnnotationFilterInvocationDefinition.determineUrl(AnnotationFilterInvocationDefinition.groovy:90) at grails.plugin.springsecurity.web.access.intercept.AbstractFilterInvocationDefinition.getAttributes(AbstractFilterInvocationDefinition.groovy:72) at org.springframework.security.access.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:197) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:124) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at grails.plugin.springsecurity.web.filter.GrailsAnonymousAuthenticationFilter.doFilter(GrailsAnonymousAuthenticationFilter.groovy:53) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:169) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at grails.plugin.springsecurity.web.authentication.logout.MutableLogoutFilter.doFilter(MutableLogoutFilter.groovy:62) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at grails.plugin.springsecurity.web.SecurityRequestHolderFilter.doFilter(SecurityRequestHolderFilter.groovy:58) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:726) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:471) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:394) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:311) at org.apache.catalina.core.StandardHostValve.custom(StandardHostValve.java:395) at org.apache.catalina.core.StandardHostValve.status(StandardHostValve.java:254) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:177) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:748) ``` ### Environment Information - **Operating System**: Debian 9 - **Streama version**: 1.5.1 " "__label__bug Rename: LICENSE.md to LICENSE ### Type of Report Enhancement ### Actual behaviour LICENSE.md is not auto-integrated in github overview and repository preview. ### Expected behaviour Renaming the file to LICENSE will do exactly this. 🍰 ### Follow Up After updating this here, one should consider to update other repos, too." "__label__bug [TW-1691] Can't login at answers.tasktools.org after signing up at bugs.tasktools.org _Florian Schmitt on 2015-09-09T19:01:01Z says:_ After signing up at bug.tasktools.org, i've tried to add a question at answers.tasktools.org (this is why i've signed up here....). But although i'm logged in at bug.tasktools, answers.tasktools.org says i'm not logged in, and asks me to log in or to sign up at bug.tasktool. If i enter my credentials at answers.tasktools.org, i receive a message that login failed, without any more info. So, this isn't a taskwarrior bug but a jira one, but i don't know any other place to report it...." "__label__enhancement A way to prevent 'bits' from spilling on the floor * MC Version: 1.12.2 * C&B Version: chiselsandbits-14.12 * Do You have Optifine: Yes I'm having a problem trying to run a survival server with Chisel & Bits, since 'chiselling' an entire block and not having space in your inventory for the bits will spill all the bits on the floor and cause **major** lag. It would be great for the mod to prevent the player from chiselling a block if they don't have the inventory space for it." __label__enhancement Command Feedback

Bugreport

Bug report by Lee#6874

Description

Same as rc!bug but with feedback __label__enhancement Options for visibility of bionics __label__bug [ossia-max] \@default is broken just open ossia.model.maxhelp and you should notice it __label__bug teste tsteteste "__label__enhancement Support storing snapshots in multiple directories More and more projects are being chunked up into modules, so it would be nice to be able to store snapshots for each module in their own project directories. " __label__bug edit for action in package fails i have an action in a package `p/a` do `action get` on `p/a` then `edit` error reported > The supplied authentication is not authorized to access 'undefined/a'. "__label__question Cannot use ref within Refs worked in V1, but break in V2 with React error: `Stateless function components cannot have refs.` Example: ```tsx {() => (
)}
``` " "__label__enhancement Make structopt-derive's dependency on structopt optional So, I have a very weird request. I'm trying to re-export stuctopt-derive in a crate, but since this code https://github.com/TeXitoi/structopt/blob/cc6dfd2e542440e4f194ce7823add4bf09ba9c22/structopt-derive/src/lib.rs#L907-L909 expands to `extern crate structopt`, my consumers would have to add structopt to their dependencies, which I want to avoid. Is there another option of doing this? E.g., making this part of the derive optional (with a feature flag). cc https://github.com/killercup/quicli/issues/9" "__label__bug Wire character count not working - sharing OP post on the wire On GCcollab, when sharing an opportunity from the OP on the Wire, the character count does not adjust to show the remaining amount of characters that can be entered in the text box. ![gccollab wire character count not working](https://user-images.githubusercontent.com/15378977/35743914-f9c5b5d2-080c-11e8-8f72-750e5f0c61c4.PNG) " "__label__bug Issues with search After my changes we've noticed a couple of issues. - [x] 1. Searching for random junk text like `awefpokawpe` then changing skin tone suddenly returns non-matching emojis. ![https://i.imgur.com/L8IhS46.png?1](https://i.imgur.com/L8IhS46.png?1) - [x] 2. Before any emojis are loaded into cache, searching for example `thumb` then changing skin tone, and removing the text you're left with emojis not showing until you scroll or change skin tones again. ![https://i.imgur.com/ev8SqBk.png?1](https://i.imgur.com/ev8SqBk.png?1) I'll look at these issues sometime over the next couple days, if you guys have any thoughts do share :)" __label__enhancement Apply Bootstrap style to tables change `table` class from `data` to `table`. (`table` style is defined in Bootstrap stylesheet.) - [ ] BG Listings - [ ] Show Listings - [ ] Episode Listings - [ ] Show Details - [ ] Episode Details __label__bug swagger同步后修改接口内容再次同步出现500 操作步骤: 点击 同步swagger=> 点击内容为{}空对象的接口编辑 => 修改接口内容 => 更新 => 同步swagger 出现500错误 有内容的未发现问题内容成功被覆盖 如图: ![1](https://user-images.githubusercontent.com/5432828/35918237-0eedbc6e-0c4c-11e8-86b2-d9a46d69215a.gif) "__label__bug Grid - Multi selection does not work properly after reorder column. ## I'm submitting a... * Bug report ## Current behavior In multiple selecion mode after reorder grid column - selection multiple rows does not work properly. Can not select more than one row. This look like change selection mode from 'multiple' to 'single'. When [reorderable] property is set to false. Multiple selection mode works. ## Expected behavior After reorder grid column - should be possible to select more than one row. ## Minimal reproduction of the problem with instructions 1. Select 2 rows uses check column and change order any column. 2. Try to select additional row by check column. https://embed.plnkr.co/cj3CJ6pwtJXevwFOPqky/ ## Environment Package versions: ""kendo-angular-buttons"": ""2.0.0"", ""kendo-angular-dateinputs"": ""1.4.3"", ""kendo-angular-dialog"": ""2.0.0"", ""kendo-angular-dropdowns"": ""1.6.0"", ""kendo-angular-excel-export"": ""1.0.5"", ""kendo-angular-grid"": ""1.7.1"", ""kendo-angular-inputs"": ""1.4.2"", ""kendo-angular-intl"": ""1.3.0"", ""kendo-angular-l10n"": ""1.0.5"", ""kendo-angular-layout"": ""1.2.0"", ""kendo-data-query"": ""1.1.2"", ""kendo-drawing"": ""1.4.1"", ""kendo-theme-default"": ""2.47.0"", ""kendo-ui"": ""2018.1.117"", Browser: - Chrome (desktop) Version 63.0.3239.132 (64-bit) System: - TypeScript version: ""2.6.1"" - Node version: node : v6.11.3 , npm: 3.10.10 - Platform: Windows 10 64bit " __label__enhancement Skeleton while generating thumbnails Rather than loading the full images we should show skeleton of thumbnail to prevent bad performance. __label__bug Empty link if now entry selected and button OK clicked 1. Search for an keyword 2. Select none of the results 3. Click OK 4. An Empty Link is set **Expected Result** the Selection is not changed and no link added "__label__question Use userResDecorator in case of error Hello, I would like to respond with a json response when the server which I'm referring to is offline (`Error: connect ECONNREFUSED 127.0.0.1:8080`). I tried to use the userResDecorator for that. But it seems the function is not called when the request is rejected. Should I use another approach to handle offline servers?" "__label__bug Not adapted to high resolution display _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2823 Originally created at: Fri Apr 3 18:07:35 2015 Originally last updated at: Fri Apr 3 18:07:35 2015 When using SqliteStudion on Windows 8.1 on a high resolution display (e.g. Apple MacBook Pro Retina, Dell XPS13), the button icons are very small\n\n**Operating system:**\nWindows 8.1\n\n**Version:**\n3.0.3" __label__enhancement Introduce tslint What about introduce [tslint](https://palantir.github.io/tslint/) ? I'm not an expert in typescript but I think it can be a good idea to enforce certain practices. "__label__question Improving Inference Performance ""T2T with TF Eager"" [QUESTION] I have trained a translator model and I'm now trying to use it to interactively decode inputs, like in the README [https://github.com/tensorflow/tensor2tensor/blob/master/README.md](url): > t2t-decoder \ > --data_dir= ~/t2t_data \ > --problems= translate_ende_wmt32k \ > --model= transformer \ > --hparams_set= transformer_base_single_gpu \ > --output_dir= ~/t2t_train/base \ > --decode_interactive I want to deploy the model using FLASK but can't figure out how it would work using the method above. Additionally, I saw that there is also no solution so far based on Tensorflow Serving [https://github.com/tensorflow/tensor2tensor/issues/349](url) . The simplest approach seems to be based on the ""T2T with TF Eager"" notebook provided: [https://colab.research.google.com/notebook#fileId=/v2/external/notebooks/t2t/hello_t2t.ipynb](url) ![grafik](https://user-images.githubusercontent.com/13366721/34566902-a071d280-f160-11e7-915c-f2eb54007382.png) Everything works fine, but the problem is that decoding a single sentence takes always 8-10 seconds, which makes a deployment unfeasible. The issue is that the model is reloaded for any new input: ![screenshot_1087](https://user-images.githubusercontent.com/13366721/34567096-3135757e-f161-11e7-9fe2-717c267ce391.jpg) Are there any workarounds in order to get to the same translation speed as with: > t2t-decoder \ > --data_dir= ~/t2t_data \ > --problems= translate_ende_wmt32k \ > --model= transformer \ > --hparams_set= transformer_base_single_gpu \ > --output_dir= ~/t2t_train/base \ > --decode_interactive ? " "__label__enhancement Analytics App ForPDI Aplicação do Analytics no App do ForPDI para monitoramento das métricas e relatórios dos dados. Implementar na HEAD do APP o código abaixo " "__label__enhancement Routing in C4 * Problem mit Parameter/ ohne zweiten, durch extra Definition abfangen * Text mit catching_all Route nachbauen und selber trennen. " "__label__bug Error building node function using ""riff create -f square/square.js"" I get an error when creating a function using ""riff create -f square/square.js"". Seems to work OK when using ""riff create -f square/"" ``` $ /Users/trisberg/go/src/github.com/projectriff/riff-cli/riff create -f square/square.js building image... Sending build context to Docker daemon 5.12kB Step 1/3 : FROM projectriff/node-function-invoker:0.0.2 ---> b621c5d13f6a Step 2/3 : ENV FUNCTION_URI /functions/square.js ---> Using cache ---> d8fd0c6d0454 Step 3/3 : ADD square.js ${FUNCTION_URI} ---> Using cache ---> 16edd5968d79 Successfully built 16edd5968d79 Successfully tagged trisberg/square:0.0.1 exit status 2: panic: interface conversion: interface {} is string, not map[string]interface {} goroutine 1 [running]: k8s.io/kubernetes/pkg/kubectl/cmd/util/openapi/validation.getObjectKind(0x2120d40, 0xc4214c7470, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffff01, 0xc4214c73e0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/util/openapi/validation/validation.go:111 +0x539 k8s.io/kubernetes/pkg/kubectl/cmd/util/openapi/validation.(*SchemaValidation).ValidateBytes(0xc42144e5c0, 0xc4214ab8c0, 0x23, 0x30, 0xc4206f5450, 0x10ea204) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/util/openapi/validation/validation.go:49 +0x8f k8s.io/kubernetes/pkg/kubectl/validation.ConjunctiveSchema.ValidateBytes(0xc42143da60, 0x2, 0x2, 0xc4214ab8c0, 0x23, 0x30, 0x10e9ea9, 0xc4214ab8c0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/validation/schema.go:130 +0x9a k8s.io/kubernetes/pkg/kubectl/validation.(*ConjunctiveSchema).ValidateBytes(0xc42143da80, 0xc4214ab8c0, 0x23, 0x30, 0xc4206f5528, 0x10430d3) :3 +0x7d k8s.io/kubernetes/pkg/kubectl/resource.ValidateSchema(0xc4214ab8c0, 0x23, 0x30, 0x2d941a0, 0xc42143da80, 0x20, 0x2184700) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:222 +0x68 k8s.io/kubernetes/pkg/kubectl/resource.(*StreamVisitor).Visit(0xc4214bff00, 0xc4214e6d20, 0x2d9a220, 0xc4214e6da0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:543 +0x269 k8s.io/kubernetes/pkg/kubectl/resource.(*FileVisitor).Visit(0xc4214e6b60, 0xc4214e6d20, 0x0, 0x0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:502 +0x181 k8s.io/kubernetes/pkg/kubectl/resource.EagerVisitorList.Visit(0xc4214c7380, 0x1, 0x1, 0xc4214ab7a0, 0x1, 0xc4214ab7a0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:211 +0x100 k8s.io/kubernetes/pkg/kubectl/resource.(*EagerVisitorList).Visit(0xc4214e6c00, 0xc4214ab7a0, 0x336b4b0, 0x0) :115 +0x69 k8s.io/kubernetes/pkg/kubectl/resource.FlattenListVisitor.Visit(0x2d93f20, 0xc4214e6c00, 0xc4214bfec0, 0xc4214bff80, 0xc4214e6c01, 0xc4214bff80) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:417 +0xa3 k8s.io/kubernetes/pkg/kubectl/resource.(*FlattenListVisitor).Visit(0xc4214e6c20, 0xc4214bff80, 0x18, 0x18) :130 +0x69 k8s.io/kubernetes/pkg/kubectl/resource.DecoratedVisitor.Visit(0x2d93fa0, 0xc4214e6c20, 0xc4214e6c60, 0x3, 0x4, 0xc4214e6ce0, 0x1, 0xc4214e6ce0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:325 +0xd8 k8s.io/kubernetes/pkg/kubectl/resource.(*DecoratedVisitor).Visit(0xc4214ab710, 0xc4214e6ce0, 0x100c9b8, 0x21dbb20) :153 +0x73 k8s.io/kubernetes/pkg/kubectl/resource.ContinueOnErrorVisitor.Visit(0x2d93ea0, 0xc4214ab710, 0xc420b289a0, 0x336b4b0, 0x0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:352 +0xf1 k8s.io/kubernetes/pkg/kubectl/resource.(*ContinueOnErrorVisitor).Visit(0xc4214c73a0, 0xc420b289a0, 0x100f298, 0xb0) :144 +0x60 k8s.io/kubernetes/pkg/kubectl/resource.(*Result).Visit(0xc42034d6c0, 0xc420b289a0, 0x0, 0xc4214ab770) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/result.go:95 +0x62 k8s.io/kubernetes/pkg/kubectl/cmd.RunApply(0x2dbd080, 0xc4203fe5d0, 0xc4203398c0, 0x2d92e60, 0xc42000c018, 0x2d92e60, 0xc42000c020, 0xc420247880, 0x23758d0, 0x4) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/apply.go:357 +0x70c k8s.io/kubernetes/pkg/kubectl/cmd.NewCmdApply.func1(0xc4203398c0, 0xc4201e1820, 0x0, 0x2) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/apply.go:113 +0x188 k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).execute(0xc4203398c0, 0xc4201e1640, 0x2, 0x2, 0xc4203398c0, 0xc4201e1640) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:603 +0x22b k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).ExecuteC(0xc4201a18c0, 0x8000104, 0x0, 0xffffffffffffffff) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:689 +0x339 k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).Execute(0xc4201a18c0, 0xc4203fe5d0, 0x2d92e20) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:648 +0x2b k8s.io/kubernetes/cmd/kubectl/app.Run(0x0, 0x0) /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubectl/app/kubectl.go:39 +0xd5 main.main() /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubectl/kubectl.go:26 +0x22 exit status 2 ```" "__label__bug Tiles not ordered in numeric sequence when editing tilemap **Godot version:** 3.0 stable **OS/device including version:** Windows 10 Pro version 1709 **Issue description:** Tiles in the tileset are not listed in numeric order in the tileset tray when editing tilemaps. Instead of being listed in the order 0, 1, 2, 3, 4 etc they are listed as 0, 9, 99, 100, 101, 102... (image attched to better illustrate what's happening). This happens whether sprites in the tileset are named numerically or alphabetically. It's not a critical bug, but it means you have to hunt for tiles that should be near each other! **Steps to reproduce:** Add Tilemap node, load tileset resource. ![capture](https://user-images.githubusercontent.com/36228828/35915456-e352d898-0bfe-11e8-8cf9-e77d8fe2a379.PNG)" "__label__enhancement Vagrantfile -- not working behind http_proxy Please add the following lines in the vagrant file . This will make this work within all corporate firewalls . > config.vm.box = ""ubuntu/xenial64"" if Vagrant.has_plugin?(""vagrant-proxyconf"") config.proxy.http = ENV['HTTP_PROXY'] config.proxy.https = ENV['HTTPS_PROXY'] config.proxy.no_proxy = ""localhost,127.0.0.1"" end " "__label__question geo_location_criteria / selection_criteria Hi all! The netcdf-repositories (i.e arome_data_repository/ec_data_repository/arome_concat_repository/...) has the variable selection_criteria / bounding_box both at the class level and at the public function (geo_location_criteria) level. I.e: ``` def __init__(self, epsg, filename, nb_pads=0, nb_fc_to_drop=0, selection_criteria=None, padding=5000.): def get_forecast(self, input_source_types, utc_period, t_c, geo_location_criteria): ``` Some questions on this: Is there a good reason for having this as a class variable? If so, it seems dangerous/confusing to re-initialize the class when get_forecast / get_timeseries is called as seems to be the practice: ``` def _get_data_from_dataset(self, dataset, input_source_types, fc_selection_criteria_v, geo_location_criteria, concat=True, ensemble_member=None): if geo_location_criteria is not None: self.selection_criteria = geo_location_criteria ``` In the concat_data_repository, I am tempted to omit selection_criteria as a class variable. Any objections? Best, Erik" "__label__bug [TW-1185] Expired wait: not switching to pending _Paul Beckingham on 2009-07-09T09:06:16Z says:_ T. Charles Yun reports: task add foo wait:yesterday task add bar wait:tomorrow task list shows nothing, and should show ""foo"" as pending." "__label__bug Applet listing will come up not showing all columns when applet description is large ![screenshot from 2016-06-14 21-10-15](https://cloud.githubusercontent.com/assets/6322481/16058411/3bc6dc36-3276-11e6-90ba-0f0965f3265c.png) The column placement appears to be controlled by the length of the longest description. This means that when the applet screen first appears after an install it will appear to be missing the installed/locked columns for the unwary user, if the applet list contains an applet with a long description, - and the inhibit applet that is installed by default has a very long description. I have had to drag the right margin of the applet list well to the right from the default size after installation to generate the image as shown. As it launched for me after installation the columns to the right were invisible. To avoid this the description should be given a sensible display length and wrapped " "__label__bug Incorrect character escaping when for input parameters when using compile-config ActorHttpNative has the following in its components jsonld file: ```json ""parameters"": [ { ""@id"": ""cbh:Actor/Http/Native/agentOptions"", ""comment"": ""The AgentOptions for the HTTP agent as a JSON string"", ""required"": false, ""unique"": true, ""default"": ""{ \""keepAlive\"": true, \""maxSockets\"": 5 }"", ""range"": ""xsd:string"" } ], ``` The problem is the default value for agentOptions, which gets translated to the following: ```typescript const ex_myHttpFetcher = new (require('@comunica/actor-http-native').ActorHttpNative)({ 'agentOptions': '{ \keepAlive\: true, \maxSockets\: 5 }', 'name': 'ex:myHttpFetcher', 'bus': https___linkedsoftwaredependencies_org_bundles_npm__comunica_bus_http_Bus_Http }); ``` The escaped `""` are missing, causing the string to be invalid JSON (which causes the JSON parser to fail a bit later in the code) " "__label__bug Server shouldn't add duplicate tokens Push tokens are being pushed to server on app open. This needs to be countered server side, and verify that the push token doesn't exist before writing it to mongodb" "__label__bug null value in column ""to_address"" ``` [2014-08-09T16:11:47.946Z] ERROR: lamassu-server/27824 on ssustage3: null value in column ""to_address"" violates not-null constraint error: null value in column ""to_address"" violates not-null constraint at Connection.parseE (/root/tmp/lamassu-server/node_modules/pg/lib/connection.js:561:11) at Connection.parseMessage (/root/tmp/lamassu-server/node_modules/pg/lib/connection.js:390:17) at null. (/root/tmp/lamassu-server/node_modules/pg/lib/connection.js:98:18) at Socket.emit (events.js:95:17) at Socket. (_stream_readable.js:748:14) at Socket.emit (events.js:92:17) at emitReadable_ (_stream_readable.js:410:10) at emitReadable (_stream_readable.js:406:5) at readableAddChunk (_stream_readable.js:168:9) at Socket.Readable.push (_stream_readable.js:130:10) ``` " __label__question Using @progress kendo angular CDN bundles from a webpack client with externals We have a client application build with webpack and we want to use the @progress Kendo Angular UI cdn files. The reason for using CDN is that we have more than 50 applications running as one big application and we use CDN with webpack externals for vendor stuff. Here is an example of such one file: https://www.telerik.com/kendo-angular-ui/npm/node_modules/@progress/kendo-angular-buttons/dist/cdn/js/kendo-angular-buttons.js But when including any bundle we get following error per bundle: kendo-angular-buttons.js:1 **Uncaught TypeError: Cannot read property '__decorate' of undefined** How can we include those files? Is there an example of such a mechanism? Most examples use systemjs. A side question is what global variable to define in externals to glue the stuff together? "__label__bug Bug between Todoist and Firefox ## Context - Firefox 36.0a1 (2014-10-14) and latest Aurora - Mac OS X 0.10.9 - Todoist plugin for firefox: https://addons.mozilla.org/en-US/firefox/addon/todoist/ ## Use case - Go to a website which has a hashbang like https://github.com/putaindecode/fix-all-the-things/issues/11#issue-45758729 (the link must have a hashbang) - Add a task like `https://mail.google.com/mail/u/0/#inbox/1490ef3c7f1be523` in todoist - Click on the task - You'll get `https://github.com/putaindecode/fix-all-the-things/issues/11#inbox/1490ef3c7f1be523`, firefox won't change the domain, just the hashbang. Example in video: https://cloudup.com/files/ikFJvUOmJCn/download It works well on Chrome though. Code in todoist (via browser toolbox): ``` html https://mail.google.com/mail/u/0/#inbox/1490ef3c7f1be523
``` It could be `onclick=""return linkRedirecter(this)""` or https://bugzilla.mozilla.org/show_bug.cgi?id=483304 ? " "__label__question Is there a iothub-receiver-app usable on the Linux console? # Context - master-branch - Linux (Debian testing and an embedded arm-based custom distribution) # Description of the issue: It's a question: Is it possible, with the iothub-explorer or any other iothub-sample/example, to act as a receiver/final consumer of messages sent to the device-queue? I used the monitoring-app, it works, but it does not suite my needs. Thanks for any help." "__label__enhancement Create fluent builder struct Create fluent builder struct to simplify constructing a well formed message - [x] Builder - [x] Validations - [x] Support for `net/mail.Address` - [x] Support for custom headers - [x] MIME-Version - [x] File Helpers - [x] Reply-To? - [x] Docs, Examples" "__label__enhancement Allow spaces in fields entered by analytical scale input device Allow sending weights to the database from the balance in a format like `+ 0.4578`. The database throws a ""must be a number"" error, likely due to the space. " __label__bug Fix a bug that reorders categories when Header Refresh refreshes [Source](https://www.steamgifts.com/go/comment/bAN5MlG) "__label__question Tooltips via editor Hello Oli, Can you please help me with one thing : I am trying to define the tooltips for a particular column via my customized autocomplete editor. In my editor, I make an ajax call, and instead of having as a tooltip the actual value passed to the cell , I wish some other data showing up as a tooltip when I hover the cell. (i.e. the description). I have access to this description only in my editor. How can I use it to define my tooltip ? Thanks !" "__label__bug [studio] Target created when create site is called is not deleted when the create site api fails. (Create site based on a blueprint then push to remote bare git repository) ### Expected behavior Cleanup should be performed when a site is rolledback/deleted when there is an error in the create site api (Create site based on a blueprint then push to remote bare git repository) ### Actual behavior Target created when create site is called is not deleted when the create site api fails. (Create site based on a blueprint then push to remote bare git repository) ``` [ERROR] 2018-02-01 02:40:31,454 [http-nio-8080-exec-10] [site.SiteServiceImpl] | Error while rolling back/deleting site: site1 ID: site1 from blueprint: empty. This means the sites preview deployer target is still present, but the site is not successfully created. ``` ### Steps to reproduce the problem * Create a bare git repository * In your Studio, create a site, and click on **Link to upstream remote Git repository**, fill in the fields **Remote Git Repository Name (Example: origin)**, **Remote Git Repository URL**, and select **Create site based on a blueprint then push to remote bare git repository**, select any blueprint. Do not put in a username and password (to make the create site fail) * A notification will appear: Look at the tomcat log and notice the error messages. ### Log/stack trace (use https://gist.github.com) https://gist.github.com/alhambrav/0363a3f8fd4500ce9f14d8d98f06a6ab ### Specs #### Version Studio Version Number: 3.1.0-SNAPSHOT-f1cfb4 Build Number: f1cfb4f517001e16a4712407c777b5b257da2db1 Build Date/Time: 01-31-2018 11:12:48 -0500 #### OS OS X #### Browser Chrome browser" "__label__bug Cannot open tables with cyrillic letters in names _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 2959 Originally created at: Thu Oct 15 11:44:34 2015 Originally last updated at: Thu Oct 15 11:44:34 2015 It is not possible to view tables with names containing cyrillic characters. An error message is produced: [12:42:36] Could not process the tДоставка table correctly. Unable to open a table window. **Plugins loaded:** ScriptingSql, DbPluginSqlite3, PdfExport, XmlExport, PopulateDictionary, MultiEditorBoolPlugin, MultiEditorTextPlugin, Printing, RegExpImport, SqlFormatterSimplePlugin, PopulateRandomText, JavaScriptHighlighterPlugin, DbSqlite2, ScriptingQt, SqlExport, PopulateRandom, JsonExport, MultiEditorDateTimePlugin, PopulateSequence, MultiEditorNumericPlugin, MultiEditorHexPlugin, PopulateScript, MultiEditorTimePlugin, MultiEditorDatePlugin, CsvImport, SqliteHighlighterPlugin, CsvExport, ConfigMigration, HtmlExport, ScriptingTcl, SqlEnterpriseFormatter, PopulateConstant **Version:** 3.0.6 **Operating System:** Windows, 64bit" "__label__bug Re-exports with PackageImports are not hyperlinkt Steps to reproduce: ``` bash $ haddock --version Haddock version 2.15.0, (c) Simon Marlow 2006 Ported to use the GHC API by David Waern 2006-2008 ``` ``` -- foo.cabal name: foo version: 0.0.0 build-type: Simple cabal-version: >= 1.8 library exposed-modules: Foreign build-depends: base ``` ``` haskell -- Foreign.hs {-# LANGUAGE PackageImports #-} module Foreign (module Foreign) where import ""base"" Foreign ``` ``` bash $ cabal haddock ``` ### Expected result `dist/doc/html/foo/Foreign.html` links to the module documentation of `Foreign` of `base`. ### Actual result The documentation is empty. " "__label__bug IDE Fatal Errors This is upon starting PhpStorm after installing the plugin. ``` null Unexpected character 'EOI(null)' at position '3', expecting '[DOT]' at com.github.zafarkhaja.semver.VersionParser.consumeNextCharacter(VersionParser.java:516) at com.github.zafarkhaja.semver.VersionParser.parseVersionCore(VersionParser.java:288) at com.github.zafarkhaja.semver.VersionParser.parseValidSemVer(VersionParser.java:255) at com.github.zafarkhaja.semver.VersionParser.parseValidSemVer(VersionParser.java:195) at com.github.zafarkhaja.semver.Version.valueOf(Version.java:265) at mobi.hsz.idea.nodesecurity.models.Advisory.isVulnerable(Advisory.kt:36) at mobi.hsz.idea.nodesecurity.utils.VulnerabilitiesScanner$Companion$scan$1.doResume(VulnerabilitiesScanner.kt:29) at kotlin.coroutines.experimental.jvm.internal.CoroutineImpl.resume(CoroutineImpl.kt:54) at kotlin.coroutines.experimental.SequenceBuilderIterator.hasNext(SequenceBuilder.kt:129) at mobi.hsz.idea.nodesecurity.components.NodeSecurityProjectComponent$projectOpened$1.run(NodeSecurityProjectComponent.kt:25) at com.intellij.openapi.project.DumbServiceImpl.b(DumbServiceImpl.java:170) at com.intellij.ide.startup.impl.StartupManagerImpl.a(StartupManagerImpl.java:367) at com.intellij.ide.startup.impl.StartupManagerImpl.b(StartupManagerImpl.java:182) at com.intellij.openapi.project.DumbServiceImpl.b(DumbServiceImpl.java:170) at com.intellij.ide.startup.impl.StartupManagerImpl.a(StartupManagerImpl.java:396) at com.intellij.ui.GuiUtils.invokeLaterIfNeeded(GuiUtils.java:377) at com.intellij.ide.startup.impl.StartupManagerImpl.runWhenProjectIsInitialized(StartupManagerImpl.java:398) at com.intellij.openapi.project.DumbServiceImpl.runWhenSmart(DumbServiceImpl.java:162) at com.intellij.ide.startup.impl.StartupManagerImpl.c(StartupManagerImpl.java:182) at com.intellij.ide.startup.impl.StartupManagerImpl.access$400(StartupManagerImpl.java:58) at com.intellij.ide.startup.impl.StartupManagerImpl$1.a(StartupManagerImpl.java:212) at java.util.ArrayList.forEach(ArrayList.java:1251) at com.intellij.ide.startup.impl.StartupManagerImpl$1.run(StartupManagerImpl.java:212) at com.intellij.openapi.project.DumbServiceImpl.b(DumbServiceImpl.java:170) at com.intellij.ide.startup.impl.StartupManagerImpl.a(StartupManagerImpl.java:396) at com.intellij.ui.GuiUtils.invokeLaterIfNeeded(GuiUtils.java:377) at com.intellij.ide.startup.impl.StartupManagerImpl.runWhenProjectIsInitialized(StartupManagerImpl.java:398) at com.intellij.openapi.project.DumbServiceImpl.runWhenSmart(DumbServiceImpl.java:162) at com.intellij.ide.startup.impl.StartupManagerImpl.runPostStartupActivities(StartupManagerImpl.java:200) at com.intellij.openapi.project.impl.ProjectManagerImpl.a(ProjectManagerImpl.java:415) at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:315) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.a(LaterInvocator.java:424) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:407) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:762) at java.awt.EventQueue.access$500(EventQueue.java:98) at java.awt.EventQueue$3.run(EventQueue.java:715) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80) at java.awt.EventQueue.dispatchEvent(EventQueue.java:732) at com.intellij.ide.IdeEventQueue.g(IdeEventQueue.java:822) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:650) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:366) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) ```" "__label__question for 循环问题 1.我想实现: i = 10 i = i + i // 2 循环10次。 2.运行环境:Windows, Python3.6 3.操作: > for i in range(0, 10): i = 10 i = i + i // 2 print(i) > i = 10 i = i + i // 2 for i in range(0,10): print(i) 都不对。。。 如果不对循环次数要求而用数字限制: >for i in range(10, 300, i + i // 2): print(i) 结果也不对。 还尝试了其他方式得到的结果就差得更多了。 应该如何更正,非常感谢。 4.解决方案: 感谢 @0x0o 和 @wangluzhou 提供的方法。 0x0o 提供的代码如下: ```Python num = 10 for _ in range(0,num): print(num) n = num / 2 num += n ``` @wangluzhou 提供的代码如下: ```Python i = 10 for k in range(0,10): i = i + i/2.0 print ""the {k}time: {result}"".format(k=k+1, result=i) ``` 由此我改好了我的代码如下: ```Python i = 10 for k in range(0,10): i = i + i // 2 r = k + 1 if r < 6: l = r else: l = 6 print(""等级{level}-设置任务数:{mission}。等级{level}-{level_up}需要经验值{result},生命值+1。"" .format(level = r -1, mission = l, level_up = r, result = i)) ``` " "__label__bug Bullets in Canvas theme It seems the latest Canvas update has added bullets to the course progress widget. The following CSS should fix it: ``` .widget.widget_sensei_course_progress .course-progress-lessons li:before, .widget.widget_sensei_course_progress .course-progress-navigation li:before { content: none; margin-right: 0; } ``` 560935-zd-woothemes" __label__bug Can not load textdomain file in php7 Can not load textdomain file in php7 ## Plugin version 1.2.2 ## Current Behavior load english for user who use chinese ## Expected Behavior load Chinese for user who use chinese ## Possible Solution add load text domain code __label__enhancement refactor listeners to be chainable should refactor the way listeners are registered so you can define an executor in a more functional way... something like this: ```executor.onFailure(results -> { //do something }).onSuccess(results -> { //do something }).onCompletion(results -> { //do something }).execute(callable);``` "__label__bug [TW-263] Unexpected zsh autocomplete behaviour _Leon Feng on 2014-01-30T00:41:28Z says:_ Setup: Terminal.app on OS X Mavericks, with oh-my-zsh. After updating taskwarrior to 2.3.0, zsh autocomplete requires two tabs _initially_ and is noticeably slower. It doesn't matter whether I use the oh-my-zsh taskwarrior plugin or the site-function script installed by homebrew. Updated oh-my-zsh today, didn't help either. Steps to reproduce: # Open a new Terminal window # Enter ""task mod"" # Press tab; nothing happens # Press tab again; completion works from now on for the current zsh session, but noticeably slower" __label__bug vCenter ports 443 and 80 not open. __label__bug refresh tree only while renaming project do not refresh whole page (it looses any other changes also without confirm box). "__label__question Если у предмета есть что-то рядом, он не падает ![unfuck](https://i.imgur.com/3GbTOVE.png)" "__label__bug Doesn't start after update After fresh installation of 0.8 it only show startup screen, by clicking on ""Open Wallet"" nothing changes but see error in console: ``` index.js:82373 [15:41:57.322] Failed to restart after changing settings Error: No packaged emerald binary found. at checkExists.then (/Applications/EmeraldWallet.app/Contents/Resources/app.asar/electron/vault/launcher.js:44:22) at ```" "__label__bug parseFormula(): exception on mbstring named range This is: - [X] a bug report - [ ] a feature request - [ ] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet) ### What is the expected behavior? whether or not a string is multi-byte should not make a difference for the calculation engine. ### What is the current behavior? Throws a PHPExcel_Calculation_Exception with message > Formula Error: An unexpected error occured ### What are the steps to reproduce? ```php getActiveSheet()->setCellValue('A1', 'kiki'); $name = html_entity_decode('cliché'); $spreadsheet->addNamedRange(new NamedRange($name, $spreadsheet->getActiveSheet(), 'A1')); $res = Calculation::getInstance($spreadsheet)->parseFormula('=' . $name); var_dump($res); ``` ### Which versions of PhpSpreadsheet and PHP are affected? all" __label__enhancement Allow users to remove sites from their personal Federalist site list We should add a button to remove a site from someone's personal Federalist view without removing the site from Federalist for everyone. This will allow people to keep their Federalist site list clean "__label__question How can I download link field locally?
newsboat -v ``` newsboat 2.10.2 - https://newsboat.org/ Copyright (C) 2006-2015 Andreas Krennmair Copyright (C) 2015-2017 Alexander Batischev Copyright (C) 2006-2017 Newsbeuter contributors Copyright (C) 2017 Newsboat contributors newsboat is free software and licensed under the MIT License. Type `newsboat -vv' for more information. newsboat 2.10.2 System: Darwin 16.7.0 (x86_64) Compiler: g++ 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2) ncurses: ncurses 5.7.20081102 (compiled with 5.7) libcurl: libcurl/7.54.0 SecureTransport zlib/1.2.8 (compiled with 7.51.0) SQLite: 3.16.0 (compiled with 3.16.0) libxml2: compiled with 2.9.4 ```

I have this and how can I download the URL in the `Link:` field? I know, `open-in-browser` would download via browser but I want to pass the URL to something like `curl` or `wget`. ![](https://i.imgur.com/uWhJhnK.png)" __label__enhancement link cart table footer bg color with panel footer bg color ### Report Actually the cart table footer uses the @brand-secondary-dark LESS var. For better accessibility use the panel footer LESS var (@panel-footer-bg) ![image](https://user-images.githubusercontent.com/34009289/35742934-4fd5d7a2-083c-11e8-9127-7526ea91ef2d.png) ### Possible Solution change the LESS var from @brand-secondary-dark to @panel-footer-bg "__label__bug Updated normalize ouputs video without sound So I had a problem in the beginning with not processing certain videos. It appears you fixed that however, now it produces videos without ANY sound. I am using the below command. So either something is wrong with the command or with the program. Please advise. `ffmpeg-normalize -v -f -nt peak -t 0 -c:a aac -ext mp4 *.mp4`" "__label__bug zPIV spend transaction disappears from record after restart On Mac. A zPIV spend which went through and is verified on block explorer and was initially visible in the wallet, is no longer visible upon a restart. There were a few spends over a period of time and just 1 or 2 is unaccounted for. No zPIV or PIV lost, just the transaction record" "__label__enhancement Themes based on all of the Solarized accent colors I figured I'd fork this and build it myself since the last update (apparently) made it so gobsmackingly simple to add in new colors. It looks like all that would be needed is to edit all of the light and dark base theme .color files and replace the existing colors with the rest, change the name to the color, commit, and then we have the solarized rainbow, right?" __label__enhancement Lowercase commands when adding and when searching to simplify usage "__label__enhancement Add support of TID 4019 Algorithm Identification http://dicom.nema.org/medical/dicom/current/output/chtml/part16/sect_TID_4019.html Among other things, this will be, as discussed with @dclunie, the proper approach for distinguishing between the measurements produced by different 3D Slicer Segment Statistics plugins." __label__bug Extra line in dashboard api check the source code line 36 and 37 overwrite the value of datas https://github.com/DeviaVir/zenbot/blob/bcf8d4a458abb247e38238c7afa54871269d69f2/extensions/output/api.js#L35-L39 __label__bug overwritten bibli/index / map xml "__label__bug Doors can_dig crashes on nil player The player argument to `can_dig` is optional (as specified by `lua_api.txt`, and is not used by some mods (notably the Technic quarry), however the doors mod's `can_dig` assumes that it is non-nil when calling `record_protection_violation`. `record_protection_violation` should not be called at all in this function as this function does not actually check protection -- it only checks ownership, which is something entirely different. A fix would be to simply remove the call to record_protection_violation`." __label__bug ReflectionClass::isSubclassOf inconsistency ```php $refN = new \ReflectionClass('ArrayObject'); var_dump($refN->isSubclassOf('Traversable')); // true $refB = (new \Roave\BetterReflection\BetterReflection())->classReflector()->reflect('ArrayObject'); var_dump($refB->isSubclassOf('Traversable')); // false ``` Is this a known issue or a bug? I've tried to search but couldn't find anything.. __label__bug Local file IO is still broken See: https://github.com/Fizzadar/pyinfra/commit/2ed18628391d3e4ff25d2b8ed0b061d27f08e584 "__label__bug Broken trade button and shortcuts On the exchange page, the **Click to Trade...** button shown on the graph does not work. Possibly related, after the **Click to Trade...** button is clicked, the trading dialog no longer appears when you click on an **order** or a **trade**. ###### Reproduce the issue * Go to the exchange page * Click on an **order** or a **trade**, the trading dialog should appear * Now click on the **Click to Trade...** button, nothing happens * Click on an order or a trade again, this time nothing happens --- Edit: The normal **Trade** button always works, even after clicking on the **Click to Trade...** button." __label__enhancement Tetris Icon Inconsistent The Tetris icon does not behave like all other switches. Should be changed for consistency. "__label__bug BigDecimal format causes exception in generated test Bug Report: `1.2.2.Release` I have a large bigdecimal in my contract DSL: For example: ``` ""largeNum"": 55534673.56, ``` But when the generated test runs, I get the following error: `java.lang.RuntimeException: com.jayway.jsonpath.InvalidPathException: Expected character: )` And the line that it fails on is: ``` assertThatJson(parsedJson).array().contains(""['largeNum']"").isEqualTo(55534673.56); ``` For smaller bigdecimals, everything is as expected. " "__label__bug Package tags get reset when a new version is uploaded This is because the (necessary) packageChangeHook in the Tags feature calls SetPackageTags disregarding existing tags. This is perhaps not critical to fix until tags are widely editable (not just by maintainers), and there's a good story for tags. " __label__enhancement Make it pretty ᕕ( ᐛ )ᕗ "__label__enhancement Set-up continuous integration with travis-ci I think it is important to set-up continuous integration in your LaTeX file. This can also serve as ""practice"" when setting-up your thesis manuscript repository. A good starting point would be to check [this](https://github.com/harshjv/travis-ci-latex-pdf) link. Hopefully everything becomes clearer when following the instructions here. Note that you don't need to deploy everything into Dropbox." "__label__enhancement [TW-488] new warning; replacing whole description of task 42 with ""xyz"", are you sure? _David Patrick on 2012-08-08T00:49:17Z says:_ In experimenting with taskwarrior, all too often I'll try something that just doesn't parse the way I expected it to. The real problem arises when taskwarrior simply assumes that that was a string to replace the description, and does so happily, silently. I only learn that a description has been nuked by a failed command, if I bother to check afterwards. There are two aspects here, 1) the most common outcome of a mal-formed command is to silently replace the description of the target task. 2) in normal use, I almost NEVER want to replace the whole description, I'm too lazy, I'd rather append or prepend or replace, sometimes edit but almost never replace the description wholesale. Can we do a quick user-survey, to see if anyone DOES regularly replace the entire description like that, and if not, might we set an optional trap for the ""replace whole description"" action, and trigger a warning? For me, the vast majority of the time the answer would be ""no"" thank you. It will make being stupid, safer ;-)" "__label__question indexing directory not working Since version 2018-01-19, indexing directories is not working any more. System: Open Semantic Search Server 18.01.26 on Debian 9 Using the -v flag for opensemanticsearch-index-dir shows for example: Scanning directory: /xx/xx/xx Scanning file: y.pdf Adding file to queue: /xx/xx/xx/y.pdf Sanning file: z.pdf Adding file to queue: /xx/xx/xx/z.pdf ... (same for .html files) After that, nothing happens and the files do not appear in the search. opensemanticsearch-index-file works fine Where else can i look for more hints on what exactly is not working?" __label__bug Model export fails due to truncated environment short code If the environment short code is > 10 characters then model exports fail. There is no reason the short code needs to be this small. "__label__question Register in Castle/Windsor as PerRequest lifestyle (aspnetcore) * Abp Version: v3.4.0 * Base framework: .Net Core. I wanna register my object to be unique per request in aspnetcore, I register my object as follow: ``` IocManager.IocContainer.Register(Component .For() .ImplementedBy() .LifestyleCustom()); ``` But when I resolve two instances `IocManager.Instance.Resolve()` in same request, I received two differents instances. Extra info: When I register in this way `services.AddScoped();` in Startup class and I resolve via `context.RequestServices.GetService(typeof(IAgendaSessionContext)).As()` I get same instance per request (But other instance resolved via Castle in this same context is resolved as another/different instance). How do I do for register my object per request in Castle container? " __label__bug CotEditor 3.3.0 crashes on OS X 10.11 / CotEditorが予期しない理由で終了 CotEditor ver 3.3.0(224)にアップデート後にCotEditorを起動したところ、予期しない理由で終了しました。 念のため、PC再起動を行った後にCotEditorを起動しましたが、同様の事象が発生。 MacOSによるレポートを添付します。 [report.txt](https://github.com/coteditor/CotEditor/files/1709450/report.txt) "__label__enhancement Add tests for pasting from Draft.js to Draft.js The current test suite (and documentation) is only focused on paste from word processors. There should be some tests dedicated to what happens when the paste source is another Draft.js editor: - What's preserved, what's lost? - Should there be some extra special processing? - How do entities fare?" "__label__enhancement Refactor ""docker"" property to a more generic ""build"" property that uses Docker as its default build mechanism " "__label__bug datetimef in rule not working as expected - [x] master - [x] 4-2-stable - [x] 4-1-stable ------- I try to convert a string like 2018-01-01 using the datetimef function. I does not work as expected. Rule: ``` testRule{ *RetTime = ""2018-01-01""; writeLine(""stdout"",""*RetTime""); writeLine(""stdout"",datetimef(*RetTime,""%Y-%m-%d"")); } OUTPUT ruleExecOut ``` Output: ``` $ irule -sF test.r 2018-01-01 Apr 05 5744 14:57:12 ``` If I explicitely cast the datetime back to string I get another result ``` testRule{ *RetTime = ""2018-01-01""; writeLine(""stdout"",""*RetTime""); writeLine(""stdout"",timestr(datetimef(*RetTime,""%Y-%m-%d""))); } ``` Output: ``` $ irule -sF test.r 2018-01-01 Dec 05 5773 22:05:12 ``` I would expect to get the original date 2018-01-01. Tested in 4.1 and 4.2.2" __label__enhancement Add Method to have multiple TileLayers "__label__enhancement Select the authentication service at the connection Hello, There isn't the possibility of choosing the authentication service when we use `ZetaPushConnection`. Can you add it ? Here is my code for the connection : this.zpConnection.connect({'login':'user', 'password': 'password'}).then(() => { console.debug(""ZetaPushConnection:OK""); }); Damien " __label__enhancement make promotion list alphabetical Please and thank you! __label__enhancement cv-pls is also available on deleted questions Which makes no sense as yo can't close vote them anymore. Please remove the cv-pls link if the question is or gets deleted. Reported by [Fred -ii-](https://stackoverflow.com/users/1415724/fred-ii) in SOCVR Chat [here](https://chat.stackoverflow.com/transcript/message/37890765#37890765) "__label__enhancement Installing Dependent Modules When you `Install-Module` if that module is dependent upon another project that also references DnnPackager, then the install zip for that other project should also be built and installed, so the complete dependency chain of projects are installed together. This used to work in V1. " "__label__enhancement Update to new name of the chaos run journal output file A part of https://github.com/chaostoolkit/chaostoolkit/issues/31, the output file is now renamed from `chaos-report.json` to `journal.json`. Update this package to mirror this change." __label__enhancement Feature request: Online rendering service Something like nbviewer for visdom .jsons would be really great so that you can share your work publicly. Any plans on that? "__label__bug Processing Fuse profile file fails I've created a profile from FUSE of the Cyclone game, but sna2skool fails when processing it. I've tried this process on both macOS 10.11.6 (python 3.6.3) and Ubuntu 14.04 (python 3.4.3), and both fail with the same message. The latest skoolkit is cloned and installed as per your documentation page. The Cyclone tape is loaded into FUSE (v1.4.1), then at the menu screen I save a z80 snapshot. I start the profiler, play through a large part of the game, and save it. The following command is then run: `sna2skool.py -M cyclone.profile -g cyclone.ctl cyclone.z80 > cyclone.skool` which produces the following error: ``` Reading cyclone.profile: 100% Traceback (most recent call last): File ""/usr/local/bin/sna2skool.py"", line 24, in sna2skool.main(sys.argv[1:]) File ""/usr/local/lib/python3.6/site-packages/skoolkit/sna2skool.py"", line 141, in main run(snafile, namespace, config) File ""/usr/local/lib/python3.6/site-packages/skoolkit/sna2skool.py"", line 56, in run ctls = generate_ctls(snapshot, start, end, options.code_map) File ""/usr/local/lib/python3.6/site-packages/skoolkit/snaskool.py"", line 537, in generate_ctls ctls = _generate_ctls_with_code_map(snapshot, start, end, code_map) File ""/usr/local/lib/python3.6/site-packages/skoolkit/snaskool.py"", line 244, in _generate_ctls_with_code_map if _is_terminal_instruction(disassembler.disassemble(b_start, b_end)[-1]): File ""/usr/local/lib/python3.6/site-packages/skoolkit/snaskool.py"", line 188, in _is_terminal_instruction if data[0] == 24 and data[1] > 0: IndexError: list index out of range ``` this is the same error produced on both macOS and Ubuntu. I also tried a much small `.profile` (a couple of seconds on the Cyclone menu screen) with the same error. Here's the short profile: ``` 0x028e,10444 0x0290,14920 0x0293,14920 0x0296,154636 0x0298,47744 0x0299,83590 0x029b,143251 0x02ab,47744 0x02ac,95526 0x02ae,135791 0x02b0,5987 0x02b1,5968 0x02b2,16412 0x031e,5968 0x031f,10444 0x0321,5968 0x0322,10444 0x0324,16412 0x83c2,808 0x83c3,2222 0x83c4,3030 0x83c6,2222 0x83c7,2222 0x83c8,2222 0x83c9,2626 0x83cc,1414 0x83ce,2020 0x842d,2020 0x842e,2020 0x842f,2020 0x8430,2828 0x8432,2020 0x8433,808 0x8434,2020 0x8b74,598649 0x8b78,105847 0x8b79,185237 0x8b7b,105885 0x8b7c,105942 0x8b7d,396950 0x8b7f,185237 0x8b81,396912 0x8b83,185256 0x8b85,105847 0x8b86,185294 0x8b88,397026 0x8b8a,317307 0x8b8c,258 0x8b8d,498536 0x8b90,264627 0xe29e,25383 0xe2a1,25364 0xe2a4,17904 0xe3f8,25383 0xe3fb,10463 0xe3fd,25402 0xe400,17904 0xe40c,5968 0xe40d,5968 0xe40e,14920 0xfe92,14939 0xfe95,10444 0xfe97,623426 0xfe98,396698 0xfe99,396755 0xfe9b,642814 0xfe9d,74569 0xfe9f,82024 0xfea0,44749 0xfea1,52204 0xfea2,44749 0xfea3,52185 0xfea4,52223 0xfea5,82005 0xfea6,74588 0xfea9,74588 0xfeac,52185 0xfeae,117258 0xfeaf,154476 0xfeb1,55747 0xfeb2,55747 0xfeb3,120801 0xfeb9,52185 0xfeba,74550 0xfebb,74569 0xfebc,52204 0xfebd,340048 0xfebe,340048 0xfebf,340105 0xfec0,566810 0xfec1,729379 0xfec3,10437 0xfec5,82125 0xfec6,449902 0xfec9,105866 0xfeca,185218 0xfecc,278213 0xfece,31508 0xfecf,31508 0xfed0,63035 0xfed2,31508 0xfed3,31508 0xfed4,31508 0xfed5,78789 0xfed8,31508 0xfed9,55158 0xfedb,86666 0xfedc,55139 0xfedd,55139 0xfedf,57243 0xfee1,74619 0xfee3,44779 0xfee4,52239 0xfee5,44779 0xfee6,52220 0xfee7,52220 0xfee8,82098 0xfee9,74600 0xfeec,74619 0xfeef,52220 0xfef1,111709 0xfef2,144989 0xfef4,55782 0xfef5,55839 0xfef6,116860 0xfef8,52220 0xfef9,74638 0xfefa,52220 0xfefb,74600 0xfefc,89520 0xfefe,14920 0xfff4,2020 0xffff,2424 ```" "__label__bug failure in gdr_copy/uct_p2p_rma_test.put_short/0 http://hpc-master.lab.mtl.com:8080/job/hpc-ucx-pr/6079/label=vulcan-jenkins,worker=0/console ``` 17:22:16 [ OK ] gdr_copy/uct_p2p_rma_test.get_zcopy/0 (0 ms) 17:22:16 [ RUN ] gdr_copy/uct_p2p_rma_test.put_short/0 17:22:16 [ INFO ] memory_type:cuda 0 4.0g /scrap/jenkins/workspace/hpc-ucx-pr-3/label/vulcan-jenkins/worker/0/contrib/../test/gtest/uct/uct_test.cc:740: Failure 17:22:19 Value of: cerr == cudaSuccess 17:22:19 Actual: false 17:22:19 Expected: true 17:22:26 1x{0..4.0g} nocomp 64.0k 17:22:26 [ FAILED ] gdr_copy/uct_p2p_rma_test.put_short/0, where GetParam() = gdr_copy/gdrcopy0 (10822 ms) 17:22:26 [----------] 3 tests from gdr_copy/uct_p2p_rma_test (10822 ms total) ... 17:35:25 [ PASSED ] 2297 tests. 17:35:25 [ FAILED ] 1 test, listed below: 17:35:25 [ FAILED ] gdr_copy/uct_p2p_rma_test.put_short/0, where GetParam() = gdr_copy/gdrcopy0 17:35:25 17:35:25 1 FAILED TEST 17:35:26 make: *** [test] Error 1 17:35:26 make: Leaving directory `/scrap/jenkins/workspace/hpc-ucx-pr-3/label/vulcan-jenkins/worker/0/build-test/test/gtest' ```" __label__question Confirmar carga de datos de último censo + fotos __label__enhancement Show username and timestamp for tags To help us identify where a particular tag came from the tagger id and timestamp of the tag should be shown in the UI. This information is already available but isn't being shown. "__label__enhancement [TW-124] add duration: core attribute _David Patrick says:_ to allow estimates of how long a task might take. This is a new attribute, and establishing the parameters will take some discussion, as taskwarrior does not (yet) deal in time-of-day. The easiest (and least flexible) option would be to allow only values representing duration in hours. It should probably look something like; task add invent foolicious pancake mix proj:bakesale dur:4.5h Project summaries would benefit from summing ""estimated time required"", and this number could be used to generate a warning when one task is about to be created that conflicts with an existing dated and durationned task." __label__bug bug: Rhea not found in alarms page Rhea was not found __label__enhancement createSink `(f: (props: Object) => void) => Component` __label__enhancement Create Update page "__label__enhancement Add structured data to theme. Need to add structured data to the theme so that google can crawl it and display content better in search results. Ideally, this would be in `JSON-LD` format, but more realistically, it'll probably have to be done using schema.org microdata (because, you know, PHP and all...)." "__label__bug All LDAP contacts are hidden, cannot unhide. All LDAP users are successfully detected however they are all set to hidden and any attempt to unhide them results in the error ""Making user visible failed"", no related errors are present in any of the logs." __label__bug 記事ページのURL `id` or `slug` とかが必要。 "__label__enhancement Optimize redundant variable assignments Variables with only one initialization and this initialization is a constant (primitive, class reference or string constant pool) can be safely inlined as value and the variable can be removed." "__label__bug 40-desktopenvironments: race condition at ""test"" If more than one root sessions login at the same time: ... export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir if ! test -d ""${XDG_RUNTIME_DIR}""; then (1) mkdir ""${XDG_RUNTIME_DIR}"" (2) chmod 0700 ""${XDG_RUNTIME_DIR}"" fi ... They may reach line (1), no `${XDG_RUNTIME_DIR}`, then step into the if block together. As the result, there will be an error message when the race condition occurs. ``` mkdir: cannot create directory ‘/tmp/0-runtime-dir’: File exists ``` " "__label__enhancement Hazelcast is embedded for every instance of Devicehive Hazelcast doesn't organize cluster as every instance has its own name for service which gets information from zookeeper about hazelcast members. When every instance is launching, it's searching for existed members of hazelcast in zookeeper with service name applicationContext.getId() and consequently doesn't find any. This leads to strange behavior as members doesn't know about each other and can't share data. When instance is stopped, data will be lost. It's useful to have hazelcast in cluster as it can solve issues such as #160. " __label__enhancement Separate the edit and read only view of event Separate the edit and readonly view of event "__label__enhancement Add SubVendor Name or ID to device.list It would be great to have the SubVendor name or ID in the device.list JSON query, so when showing the decorated names of each card, the specific manufacturer could be shown (such as MSI, Gigabyte, etc). This would also be nice in the GUI when you have multiple rigs and want a quick way to see what (generally) is in them." __label__enhancement add modular versions of functional implementations including tests "__label__bug Set-BPAWorkflowVariable throws an error when variables from Get-BPAWorkflowVariable are piped in ## Expected Behavior Get-BPAWorkflow ""Test"" | Get-BPAWorkflowVariable -Name ""testvar"" | Set-BPAWorkflowVariable -InitialValue ""123"" ## Actual Behavior The following error is received, but the variables are still modified. Join-Path : Cannot bind argument to parameter 'Path' because it is an empty string. ## Steps to Reproduce the Problem 1. Pipe a workflow variable object in like so: Get-BPAWorkflow ""Test"" | Get-BPAWorkflowVariable -Name ""testvar"" | Set-BPAWorkflowVariable -InitialValue ""123"" ## Specifications - PoshBPA Version: 1.4.0 - PowerShell Version: 5.1 - AutoMate Enterprise Version: 10.7" "__label__bug Uninstalling VSCode plugin does not work I still get responses in the sidebar after uninstalling the vscode plugin, I also tried restarting VSCode and still got responses in the sidebar." __label__enhancement Allow allowedIncludes and allowFilters to accept an array Would really appreciate it if these two methods could accept arrays or strings. Would be nice to declare my filters in an array and pass them in as needed. __label__bug rhamt image files are missing @rdebeasi Can you please add these missing images ASAP? Looks like these are missing: images/application-development/rhe-os/rhamt-print-grey.png images/application-development/rhe-os/rhamt.png "__label__enhancement Add ""user is typing"" support For chat services which support displaying a ""user is typing"" message there should be a method available on the base connector class for triggering this. This would be particularly useful when implemented with a typing delay (#65). " __label__bug Fix RocketChat link in CryptoConditions README. See comments in https://github.com/hyperledger/quilt/pull/75. The RocketChat link is currently broken in the `Contributors` section. __label__bug Qt5: QFileDialog does not allow selecting new file for Save Snapshot Works well with Qt4.x With Qt5 only existing files can be selected. __label__enhancement [TW-1721] Support multiple sync servers _Óscar García Amor on 2015-11-01T12:26:21Z says:_ Would be interesting that Taskwarrior supports multiple taskd sync servers as do git with remotes. Then you can do: task synchronize alice -> Sync with alice task synchronize bob -> Sync with bob And what would be best is that you can select what project want sync. In this way you could have a server for your work and a server for your personal tasks. "__label__bug Incorrect column names in ""view closed loans"" ## Description Incorrect column names in ""view closed loans"" in Loan Account Overview. ## Steps to Reproduce Client>>Select an active client>>Loan Account Overview>>Click on view closed loans. ## Expected Behaviour Correct columns names as per the data. ## Actual Behaviour Incorrect column names as per the data. ## Settings - Mifos X version: 17.07.01.RELEASE - Browser used: chrome ## Screenshots, if any ![screenshot at 2018-01-05 11 45 33](https://user-images.githubusercontent.com/21126132/34597642-f6c4f7e0-f20d-11e7-9626-318fb2c4e87e.png) " __label__enhancement Port them to Rust? Markdown isn't thread-safe! "__label__bug Short frame - expected 131064 bytes, got n bytes Hello, I am facing very strange behavior and unfortunately cannot find any rational explanation to it. I am consuming messages from the queue with the service and at some point I am starting to get following exception: ``` Connection shutdown requested. Reason: AMQP close-reason, initiated by Library, code=501, text=""Short frame - expected 131064 bytes, got 127561 bytes"", classId=0, methodId=0, cause=RabbitMQ.Client.Impl.MalformedFrameException: Short frame - expected 131064 bytes, got 127561 bytes at RabbitMQ.Client.Impl.Frame.ReadFrom(NetworkBinaryReader reader) at RabbitMQ.Client.Impl.SocketFrameHandler.ReadFrame() at RabbitMQ.Client.Framing.Impl.Connection.MainLoopIteration() at RabbitMQ.Client.Framing.Impl.Connection.MainLoop() ``` This is happening with any message from the queue starting from some point of the time (could run for weeks without the problems). The exception is always like: ``` Short frame - expected 131064 bytes, got n bytes ``` Where n is any amount of bytes message actually contains of. 131064 bytes is [default value of frame_max](https://www.rabbitmq.com/configure.html) From RabbitMQ instance logs: ``` -- =INFO REPORT==== 6-Jun-2016::10:20:47 === accepting AMQP connection <0.8031.7> (10.xxx.xxx.xx:53256 -> 10.xxx.xxx.xx:5672) -- =ERROR REPORT==== 6-Jun-2016::10:21:17 === closing AMQP connection <0.8031.7> (10.xxx.xxx.xx:53256 -> 10.xxx.xxx.xx:5672): {writer,send_failed,{error,timeout}} ``` Restarting both RabbitMQ instance and RabbitMQ host didn't help. I am using EventingBasicConsumer at the moment but switching to the blocking one didn't fix the issue, too. I am using autorecovery connection and autorecovery model with both AutomaticRecoveryEnabled and TopologyRecoveryEnabled set to true. RabbitMQ 3.6.1, Erlang R16B03 RabbitMQ.Client 3.6.1 Tested against RabbitMQ.Client version 3.6.1 and 3.6.2 Implementation is really simple and basic: ``` csharp using System; using RabbitMQ.Client; using Settings; public class ConnectionFactoryFactory : IConnectionFactoryFactory { public ConnectionFactory CreateConnectionFactory(string user, string password, IProtocol protocol, string host, int port, int timeoutInMs = 60000) { return new ConnectionFactory { UserName = user, Password = password, Protocol = protocol, HostName = host, Port = port, RequestedConnectionTimeout = timeoutInMs, SocketReadTimeout = timeoutInMs, SocketWriteTimeout = timeoutInMs, AutomaticRecoveryEnabled = true, TopologyRecoveryEnabled = true, NetworkRecoveryInterval = TimeSpan.FromSeconds(5), RequestedHeartbeat = 120, UseBackgroundThreadsForIO = true }; } } ; ``` ``` csharp using RabbitMQ.Client; using RabbitMQ.Client.Events; using RabbitMQ.Client.Framing.Impl; public class AutorecoveringConnectionFactory : IAutorecoveringConnectionFactory { private IConnectionFactoryFactory ConnectionFactoryFactory { get; } public AutorecoveringConnectionFactory(IConnectionFactoryFactory connectionFactoryFactory) { ConnectionFactoryFactory = connectionFactoryFactory; } public AutorecoveringConnection CreateAutorecoveringConnection(string user, string password, IProtocol protocol, string host, int port, int timeoutInMs = 60000) { var factory = ConnectionFactoryFactory.CreateConnectionFactory(user, password, protocol, host, port, timeoutInMs); var autorecoveringConnection = (AutorecoveringConnection)factory.CreateConnection(); autorecoveringConnection.CallbackException += (s, args) => ConnectionCallbackExceptionHandler(args); autorecoveringConnection.ConnectionBlocked += (s, args) => ConnectionBlockedHandler(args); autorecoveringConnection.ConnectionShutdown += (s, args) => ConnectionShutdownHandler(args); autorecoveringConnection.ConnectionUnblocked += (s, args) => ConnectionUnblockedHandler(); autorecoveringConnection.Recovery += (s, args) => ConnectionRecoveryHandler(); return autorecoveringConnection; } } ``` ``` csharp using RabbitMQ.Client; using RabbitMQ.Client.Events; public class ModelFactory : IModelFactory { public IModel CreateModel(IConnection connection) { var model = connection.CreateModel(); model.BasicAcks += (s, args) => ModelBasicAcksHandler(args); model.BasicNacks += (s, args) => ModelBasicNacksHandler(args); model.BasicRecoverOk += (s, args) => ModelBasicRecoverOkHandler(); model.BasicReturn += (s, args) => ModelBasicReturnHandler(args); model.CallbackException += ModelCallbackExceptionHandler; model.ModelShutdown += ModelShutdownHandler; model.BasicQos(0, 200, false); return model; } } ``` ``` csharp using System; using RabbitMQ.Client; using RabbitMQ.Client.Events; public class EventingConsumerFactory : IEventingConsumerFactory { public EventingBasicConsumer CreateConsumer(IModel model, EventHandler recievedEventHandler) { var consumer = new EventingBasicConsumer(model); consumer.Received += recievedEventHandler; consumer.Registered += (s, e) => ConsumerRegisteredHandler(e); consumer.Shutdown += ConsumerShutdownHandler; consumer.Unregistered += (s, e) => ConsumerUnregisteredHandler(e); consumer.ConsumerCancelled += (s, e) => ConsumerCancelledHandler(e); return consumer; } } ``` And consumer itself: ``` csharp using System; using System.Threading; using System.Threading.Tasks; using Exceptions; using Factories; using RabbitMq.Gateway; using RabbitMq.Gateway.Data; using RabbitMQ.Client; using RabbitMQ.Client.Events; using Settings; public class EventingAutobindingConsumer : IDisposable { private IAutorecoveringConnectionFactory AutorecoveringConnectionFactory { get; } private IModelFactory ModelFactory { get; } private IEventingConsumerFactory EventingConsumerFactory { get; } private IMessageConsumer MessageConsumer { get; } private BusConnectionSettings Settings { get; } private string ConsumerTag { get; set; } private IConnection Connection { get; set; } private IModel Model { get; set; } public EventingAutobindingConsumer(IAutorecoveringConnectionFactory autorecoveringConnectionFactory, IModelFactory modelFactory, IEventingConsumerFactory eventingConsumerFactory, IMessageConsumer messageConsumer, BusConnectionSettings settings) { AutorecoveringConnectionFactory = autorecoveringConnectionFactory; ModelFactory = modelFactory; EventingConsumerFactory = eventingConsumerFactory; MessageConsumer = messageConsumer; Settings = settings; } public async Task StartConsumingAsync(CancellationToken token) => await Task.Run(() => StartConsuming(token), token); private void StartConsuming(CancellationToken token) { if(Settings == null) throw new ConfigurationMissingException(); var autorecoveringConnection = AutorecoveringConnectionFactory.CreateAutorecoveringConnection(Settings.Username, Settings.Password, Settings.Protocol, Settings.HostName, Settings.Port); autorecoveringConnection.ConsumerTagChangeAfterRecovery += (sender, args) => ConsumerTagChangeAfterRecoveryHandler(args); autorecoveringConnection.QueueNameChangeAfterRecovery += (sender, args) => QueueNameChangeAfterRecoveryHandler(args); var model = ModelFactory.CreateModel(autorecoveringConnection); var eventingConsumer = EventingConsumerFactory.CreateConsumer(model, (sender, args) => ConsumerRecievedHandler((EventingBasicConsumer)sender, args, token)); Model = model; Connection = autorecoveringConnection; ConsumerTag = model.BasicConsume(Settings.Queue, false, eventingConsumer); } private async void ConsumerRecievedHandler(IBasicConsumer consumer, BasicDeliverEventArgs args, CancellationToken token) { try { var success = await MessageConsumer.Consume(args, token); if (success) consumer.Model.BasicAck(args.DeliveryTag, false); else consumer.Model.BasicReject(args.DeliveryTag, !args.Redelivered); } catch (Exception exception) { if (consumer.Model.IsOpen) consumer.Model.BasicReject(args.DeliveryTag, !args.Redelivered); } } public void StopConsuming() { Model?.Abort(); Connection?.Abort(); } public void Dispose() { Model?.Dispose(); Connection?.Dispose(); } ``` I omitted some extra parts like handlers and logging as they don't seem to be relevant to the issue. Our setup looks like this: Azure VM -> Azure LB -> HA Proxy (2 instances loadbalanced) -> RabbitMQ primary node I am not actually sure if this is the issue with RabbitMQ.Client, but this was the proposal from [ Google groups](https://groups.google.com/forum/#!topic/rabbitmq-users/38aFbJt_7zY) to turn to you. Thanks! " "__label__bug error while following importLPFDemo steps Printed Error: /Desktop/Iris-master/Python/LPFParser.py"", line 207, in plotLPFData plt.step(data[0]/1000./60., data[1][:,r,c,chi], lw=mplargs['lw'], alpha=mplargs['alpha'], IndexError: only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boolean arrays are valid indices Hi, Do you have any suggestions on why this would occur? Thank you. " __label__bug Don't allow creating of labels with names considered invalid in RapidPro __label__bug Test Issue A test issue. __label__enhancement Add Gentellela UI __label__enhancement Refactor dialog system The current dialog system is a mine field for segfaults. It should be rewritten so that it doesn't delete itself when finished. Or so that functions like state::selectmode and menustate::init don't delete the dialog if called from the dialog. There'll be a programming pattern for this. __label__enhancement FieldPartitioner should support multiple fields. "__label__bug WebDAV error in 3.0.0. RC2 when accessing Files ### Actual behaviour when i try to open any files on android from my nextcloud 13 RC2 i can't open the files. i also can't see all my files on the folder ( mostly only 2 or three files are shown). When i try to downlaod a file i get the error: the file isn't any more on the server. I tried the official version 2 and it works. Webdav tried directly and works. ### Expected behaviour All files are shown and accessible. ### Steps to reproduce 1. Install beta client from playstore 2. open folders; files are missing 3. try to download a file ### Environment data Android version: Android 7.0 Device model: Samsung S8+ (G955F) Stock or customized system: Stock Nextcloud app version: 3.0.0 RC2 Nextcloud server version: 13 RC2 ### Logs #### Web server error log No Errors Access Log [25/Jan/2018:20:58:13 +0100] ""GET /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/M5/Quellenb%C3%BCcher/null HTTP/1.1"" 404 281 [25/Jan/2018:20:58:20 +0100] ""GET /ocs/v1.php/cloud/user?format=json HTTP/1.1"" 200 413 [25/Jan/2018:20:58:20 +0100] ""GET /index.php/avatar/xxxx/336 HTTP/1.1"" 404 - [25/Jan/2018:20:58:21 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/M5/Quellenb%C3%BCcher/ HTTP/1.1"" 207 816 [25/Jan/2018:20:58:21 +0100] ""GET /ocs/v2.php/apps/files_sharing/api/v1/shares?path=%2FSpiele%2FPen+%26+Paper%2FMidgard%2FM5%2FQuellenb%C3%BCcher%2F&reshares=true&subfiles=true HTTP/1.1"" 200 138 [25/Jan/2018:20:58:22 +0100] ""GET /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/M5/Quellenb%C3%BCcher/null HTTP/1.1"" 404 281 [25/Jan/2018:20:58:26 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/M5/ HTTP/1.1"" 207 797 [25/Jan/2018:20:58:26 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/M5/ HTTP/1.1"" 207 24490 [25/Jan/2018:20:58:27 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/ HTTP/1.1"" 207 795 [25/Jan/2018:20:58:27 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/Midgard/ HTTP/1.1"" 207 9448 [25/Jan/2018:20:58:27 +0100] ""GET /ocs/v2.php/apps/files_sharing/api/v1/shares?path=%2FSpiele%2FPen+%26+Paper%2FMidgard%2FM5%2F&reshares=true&subfiles=true HTTP/1.1"" 200 138 [25/Jan/2018:20:58:28 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/ HTTP/1.1"" 207 788 [25/Jan/2018:20:58:28 +0100] ""GET /ocs/v2.php/apps/files_sharing/api/v1/shares?path=%2FSpiele%2FPen+%26+Paper%2FMidgard%2F&reshares=true&subfiles=true HTTP/1.1"" 200 138 [25/Jan/2018:20:58:28 +0100] ""PROPFIND /remote.php/webdav/Spiele/Pen%20%26%20Paper/ HTTP/1.1"" 207 8602 [25/Jan/2018:20:58:28 +0100] ""GET /ocs/v2.php/apps/files_sharing/api/v1/shares?path=%2FSpiele%2FPen+%26+Paper%2F&reshares=true&subfiles=true HTTP/1.1"" 200 138 [25/Jan/2018:20:58:28 +0100] ""PROPFIND /remote.php/webdav/Spiele/ HTTP/1.1"" 207 770 [25/Jan/2018:20:58:28 +0100] ""PROPFIND /remote.php/webdav/Spiele/ HTTP/1.1"" 207 6173 [25/Jan/2018:20:58:29 +0100] ""GET /ocs/v2.php/apps/files_sharing/api/v1/shares?path=%2FSpiele%2F&reshares=true&subfiles=true HTTP/1.1"" 200 138 [25/Jan/2018:21:01:46 +0100] ""GET /index.php/204 HTTP/1.1"" 204 - [25/Jan/2018:21:01:46 +0100] ""GET /index.php/204 HTTP/1.1"" 204 - [25/Jan/2018:21:01:46 +0100] ""GET /index.php/204 HTTP/1.1"" 204 - [25/Jan/2018:21:01:47 +0100] ""GET /index.php/204 HTTP/1.1"" 204 - [25/Jan/2018:21:01:47 +0100] ""GET /index.php/204 HTTP/1.1"" 204 - [25/Jan/2018:21:01:47 +0100] ""GET /index.php/204 HTTP/1.1"" 204 - #### Nextcloud log (data/nextcloud.log) (Other try for an other file): {“reqId”:“WmrfgcXYDfcttltFgtQfXwAAAAM”,“level”:0,“time”:“2018-01-26T07:57:53+00:00”,“remoteAddr”:“xx.xx.xx.xx”,“user”:“XXXX”,“app”:“webdav”,“method”:“GET”,“url”:""/remote.php/webdav/Notes/null"",“message”:“Exception: {“Exception”:“Sabre\\DAV\\Exception\\NotFound”,“Message”:“File with name Notes\/null could not be located”,“Code”:0,“Trace”:”#0 \/var\/www\/html\/nextcloud\/3rdparty\/sabre\/dav\/lib\/DAV\/CorePlugin.php(81): OCA\\DAV\\Connector\\Sabre\\ObjectTree->getNodeForPath(‘Notes\/null’)\n#1 [internal function]: Sabre\\DAV\\CorePlugin->httpGet(Object(Sabre\\HTTP\\Request), Object(Sabre\\HTTP\\Response))\n#2 \/var\/www\/html\/nextcloud\/3rdparty\/sabre\/event\/lib\/EventEmitterTrait.php(105): call_user_func_array(Array, Array)\n#3 \/var\/www\/html\/nextcloud\/3rdparty\/sabre\/dav\/lib\/DAV\/Server.php(479): Sabre\\Event\\EventEmitter->emit(‘method:GET’, Array)\n#4 \/var\/www\/html\/nextcloud\/3rdparty\/sabre\/dav\/lib\/DAV\/Server.php(254): Sabre\\DAV\\Server->invokeMethod(Object(Sabre\\HTTP\\Request), Object(Sabre\\HTTP\\Response))\n#5 \/var\/www\/html\/nextcloud\/apps\/dav\/appinfo\/v1\/webdav.php(80): Sabre\\DAV\\Server->exec()\n#6 \/var\/www\/html\/nextcloud\/remote.php(164): require_once(’\/var\/www\/html\/n…’)\n#7 {main}"",“File”:""\/var\/www\/html\/nextcloud\/apps\/dav\/lib\/Connector\/Sabre\/ObjectTree.php"",“Line”:174}"",“userAgent”:“Mozilla/5.0 (Android) Nextcloud-android/3.0.0 RC2”,“version”:“13.0.0.11”}" "__label__question How to get information about npc vehicle's speed ? For some reasons, It's very useful for me to get this information . " __label__question ProfilesConfigFile returns results from Credentials file (not Config file) When I call `ProfileConfigFile().getAllBasicProfiles()` I expect it to load properties for the profiles defined in `.aws/config` based on the class' name. However it returns the properties from the `.aws/credentials` file. "__label__bug [TW-243] Can't Use + to Tag with Number in Task 2.0.0 beta 2 _Michelle Crane says:_ I occasionally tag a task with a number, e.g., a version number. It worked in 1.9.4, as can be seen here:
 F:\Dropbox\TextFiles>t add testing tag with number +3 Created task 69.  F:\Dropbox\TextFiles>t 69 No command - assuming 'info'.  Name        Value ----------- ------------------------------------ ID          69 Description testing tag with number Status      Pending Tags        3 UUID        3fdbc084-f33d-359f-2515-e9d1f251a8ee Entered     2011-09-23.08:34 (4 secs) 
Note: t is a batch file calling on task 1.9.4. However when I try this with 2.0.0, the tag doesn't work - instead my description goes a little funny...
 F:\Dropbox\TextFiles>t3 add testing tag with number +3 Created task 4.  F:\Dropbox\TextFiles>t3 4 info  Name        Value ----------- ------------------------------------ ID          4 Description testing tags with number + 3 Status      Pending UUID        4759b1ad-13ff-47ff-bea9-e88dcd2e97b1 Entered     2011-09-23.08:36 (7 secs) Urgency     5 
Note: t3 is a batch file calling on task 2.0.0 with my test database. If I use the modify command, I can change the tag later:
 F:\Dropbox\TextFiles>t3 4 modify tag:3 Modified 1 task.  F:\Dropbox\TextFiles>t3 4 info  Name        Value ----------- ------------------------------------ ID          4 Description testing tags with number + 3 Status      Pending Tags        3 UUID        4759b1ad-13ff-47ff-bea9-e88dcd2e97b1 Entered     2011-09-23.08:36 (3 mins) Urgency     6.6 Date             Modification ---------------- ---------------- 2011-09-23.08:40 Tags set to '3'. 
I even tried quotes, but even trying something like (at)t3 add new task +""3""@ doesn't work. I did discover that if I'm 'tag:' instead of '+' when adding a task, it works, e.g., (at)t3 add trying with colon tag:3@. So it just seems that the '+' notation isn't working the same was as in 1.9.4." __label__bug test-case exchange ### Main case 1. Проверить Ввод и выввод денег. (Ethereum). ` Done ` Найдено событие 2. Проверить Ввод и выввод токенов. ` Done ` Найдено событие 3. Создать и Отменить заявку. ` Done ` All ok. 4. Проверить что заявка не будет выполняться в трейде. 5. Создать заявку и выполныть ее сразу с помощью трейд. 6. Создать заявку и выполныть ее за несколько раз с помощью трейд. ` Done ` all ok 7. Добиться того чтобы на счету feeAccount были деньги. ` Done ` all ok 8. Вывести деньги со счета feeAccount. ` Done ` all ok 9. Изменить админа. ` Done ` All ok 10. Изменить feeAccount. `Done ` All ok 11. Изменить feeTake. ` Done ` All ok 12. Включить окончание принятие заявок. ` Done ` all ok ### Error case 1. Создать заявку в которой один токен меняется на себя самого только за меньше ценну. Проверить поведение. 2. Создать заявку в которой эфир меняется на эфир за меньшую цену. Проверить поведение. 3. Попробовать завести ноль токенов или эфира. ` Done ` All ok 4. Попробовать вывести ноль токенов или эфира. ` Done` all ok 5. Попробовать вывести эфир с помощью функции withdrawToken. ` Done ` all ok 6. Попробовать поднять цену feeTake. ` Done ` All ok 7. Попробовать вывести чужие деньги. ` Done ` Как это вообще возможно? 8. Вывести деньги когда у юзера их в бирже нету а в самой бирже есть. (Эфир и токены) ` Done ` all ok __label__enhancement integrate incrementing version number or commit hash into continues build On every commit we trigger the continues build but the version is currently fixed and only the filename provides the commit hash based on which we can differentiate the version. We should provide a way to have the hash from the commit or an always incrementing subversion number in the about dialog. __label__enhancement ENH: Use underlying getAll() and putAll() methods for performance So the ServerCache API in Ebean was modified to support these bulk operations and here we are making use of that calling the underlying bulk operations available in Hazelcast. Note that we also move over to use IMap delete() rather than remove() as we don't need the old value. "__label__bug grpc version 1.9.0 breaks getAll() I don't have a good unit test, but the following sequence throws an error: `etcd.getAll().prefix(myPrefix).strings().then()` --> Error: Argument mismatch in makeUnaryRequest I can dig deeper if needed, but my guess is you just need to fix your dependency for now." __label__bug Regressions in XML grammar documentation the test_conditions documentation isn't generated anymore the parameter_operations documentation has the wrong parameter description for some operators "__label__question Broken ""gitlens.currentLine.enabled"" setting Previously: #242 It appears that this problem has reappeared with version 8 of GitLens. The setting is now named `gitlens.currentLine.enabled` and appears to have no effect. The status bar blame information shows up regardless of this setting. The ""Toggle Line Blame Annotations"" command hides this temporarily, until a reload occurs." __label__bug Quests from general didn’t seem to show up in the better questing book __label__bug realkana - non-continuous refresh bug __label__bug Error in running What version of node is compatible I get following errors on running with node app.js module.js:540 throw err; ^ Error: Cannot find module 'sanitize-filename' at Function.Module._resolveFilename (module.js:538:15) at Function.Module._load (module.js:468:25) at Module.require (module.js:587:17) at require (internal/module.js:11:18) at Object. (J:\teamtreehouse\download.js:7:16) at Module._compile (module.js:643:30) at Object.Module._extensions..js (module.js:654:10) at Module.load (module.js:556:32) at tryModuleLoad (module.js:499:12) at Function.Module._load (module.js:491:3) PS J:\teamtreehouse> "__label__enhancement Use apt instead of apt-get ## Issue Details To avoid **apt-get**'s occasional failure to install packages during travis testing, maybe we can use **apt**, which is newer and probably does not suffer form same connectivity issues. This way we could avoid running apt-get in loop until it works. thoughts? @maxGimeno @lrineau " "__label__bug PHAST - Input + Cooling The field ""Name of Cooling Medium"" in the Input data is showing the name of the loss instead of what was entered in the calculator" __label__question option to increase or boost audio volume for rtmp streming or publishing Is there an option to boost the volume up while doing rtmp streaming or publishing? "__label__bug SLF4J: Failed to load class ""org.slf4j.impl.StaticLoggerBinder"" on webdiff I am unable to run webdiff from the binary, getting the following error: >./gumtree webdiff tmp1.java tmp2.java SLF4J: Failed to load class ""org.slf4j.impl.StaticLoggerBinder"". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. slf4j-api-1.7.25.jar and slf4j-simple-1.7.25.jar are in the lib folder, so I don't know what's going wrong. Thanks!" "__label__bug Issue Reporter: UX issues ### Issue Type Bug ### Description The issue reporter has several issues that we should address: - When working is more than one display the issue reporter opens always on the primary display. If the workbench window is on the secondary display, this causes the issue reporter to be invisible. - The issue reporter window is always on top of the workbench window. This is an issue on smaller displays. - The issue reporter is slightly too large on initial layout. This causes the ""Preview on GitHub"" issue to be scrolled out of the viewport. - We use a fwlink. This link is length restricted to a degree that makes the issue reporter hard to use. ### VS Code Info VS Code version: code-oss-dev 1.21.0 (Commit unknown, Date unknown) OS version: Darwin x64 16.7.0 Reproduces without extensions" "__label__question Transformer consumes a lot of memory for large vocab I used a customized tokenizer for transformer model, the vocab size is about 280k. The model took about 50GBs of memory as well as GPU memory. And it's ridiculously slow. It seems like the input layer is somehow converted to dense tensor with 280k x 512 shape which could count for the memory consumption and slow speed. So I search for the explicit conversion to dense tensor and replaced them in convert_gradient_to_tensor. but it didn't help. " "__label__enhancement Using Multiple Mailers with Mandrill I ude hipaway-travel/mandrill-bundle for one account, but have two accounts in mandrill and how usage two accounts ? I look about swiftmailer but not understand how to correct config ``` swiftmailer: default_mailer: default mailers: default transport: ""%mailer_transport%"" host: ""%mailer_host%"" username: ""%mailer_user%"" password: ""%mailer_password%"" spool: { type: memory } reserve transport: ""%mailer_transport1%"" host: ""%mailer_host1%"" username: ""%mailer_user1%"" password: ""%mailer_password1%"" spool: { type: memory } ``` this my mandril config ``` hip_mandrill: api_key: %mailer_password% disable_delivery: false default: sender: info@name.com.ua sender_name: Name ``` now when I need send email I get mandril service like: ``` $dispatcher = $this->get('hip_mandrill.dispatcher'); $parameters = [ 'test1' => $project, 'test2' => $user, ]; $message = new Message(); $message->setFromEmail($this->emailFrom_nr) ->setFromName($this->emailAuthorName_nr) ->addTo($email)) ->setSubject('Subject') ->setHtml($this->get('twig')->render('MyBundle:Mail:test.html.twig', $parameters)); $result = $dispatcher->send($message); return $result; ``` how to apply Multiple Mailers for mandril ? help " __label__enhancement Microsoft IDs now require Date of Birth information This is needed even when creating new @outlook.com accounts via Mail. Need to add a DOB field to the New Microsoft Account dialog. "__label__question Language hi, is it, at the current moment, possible to translate Quest World? Meaning adding locale or sth? Thanks" "__label__bug () is not hyperlinked anymore **Original reporter**: _sol@_ I adapted the tests for now: https://github.com/ghc/haddock/commit/85665a576b76cdc856ad3727b28a8abe5d185d59 I have no idea which commit introduced that regression. Finding the commit in a systematic way would require code bisection in GHC's source tree (due to changes to Haddocks interface file and the GHC API). However, I'm not aware of a systematic way to do code bisection in GHC's source tree. " "__label__bug Evacuate form - GTL showing different items, checkboxes, and clickable Where: Compute -> Clouds -> Instances -> click OpenStack one -> Lifecycle -> Evacuate Instance Compute -> Clouds -> Instances -> check OpenStack one or more -> Lifecycle -> Evacuate Instance Compute -> Clouds -> Providers -> click OpenStack one -> click Instances-> click one -> Lifecycle -> Evacuate Instance Compute -> Clouds -> Providers -> click OpenStack one -> click Instances-> check one or more -> Lifecycle -> Evacuate Instance ![screencast from 2017-07-12 17-41-51](https://user-images.githubusercontent.com/1187051/28126329-79559cfc-6729-11e7-8c7a-bb29b3cb37ea.gif) (screenshot taken from #1676, the popup error is probably less important than showing the whole list while saying that 1 instance was selected :)) On that screen, the GTL should be showing only items which are in `session[:evacuate_items]`, not all the instances. At the same time, having checkboxes on that screen makes the user to think they can still change the list of instances to evacuate, but has (correctly) no effect. And the instances should not be clickable." __label__enhancement Use a fixed width progressbar for imports It's kind of odd to have the progressbar change size. Makes it difficult to see the progress. "__label__bug Crash when trying to replace last characters of a GuiLabeled by the ellipsis When we set a text to a ``GuiLabeled`` that doesn't fit with the width of this component, it got trimmed and last characters are replaced with an ellipsis. But when ellipsis is larger than the trimmed text, the method ``String#substring(startIndex, endIndex)`` causes an ``IndexOutOfBoundException`` due to the ``startIndex`` being larger than ``endIndex``. How to reproduce : 1. Add a ``GuiButton`` with a width of 0 to the GUI ```java GuiButton button = new GuiButton(""Click here""); button.setWidth(0); ``` 2. Open the GUI containing the button 3. It crashes [Related line](https://github.com/Yggard/BrokkGUI/blob/894871d2c2faacf5661d46747fd1a897909d0c0e/core/src/main/java/org/yggard/brokkgui/skin/GuiLabeledSkinBase.java#L178-L179)" __label__bug highscore mode increase score for each type of circle "__label__bug raw_html encodes HTML where it should not #158 fixed the issue with re-encoding HTML entities, but introduced the new issue I am facing in my project: it encodes them where it shouldn't: Example: ```elixir iex(1)> Floki.parse("""") |> Floki.raw_html """" ``` Expected (this is what we can observer in 0.18): ```elixir iex(2)> Floki.parse("""") |> Floki.raw_html """" ``` " "__label__enhancement Dashboard for band leader Reporting functionality can be somehow important, especially when the performance of the players should be tracked. Reports/KPIs could be: - Average absence rate (all time, last year, last month) - Number of practives (all time, last year, last month) - Number of concerts (all time, last year) - Ratio pracices per concert (only all time) - Last Website Update etc. " "__label__bug 4k screen can not add new field _(This issue was migrated from the old bug tracker of SQLiteStudio)_ Original ID from old bug tracker: 3108 Originally created at: Wed Jun 22 21:47:20 2016 Originally last updated at: Wed Jun 22 21:47:20 2016 4k screen can not add new field **Plugins loaded:** CsvExport, DbSqlite2, SqliteHighlighterPlugin, PopulateDictionary, ScriptingQt, MultiEditorDatePlugin, MultiEditorTimePlugin, JavaScriptHighlighterPlugin, PopulateSequence, MultiEditorHexPlugin, MultiEditorTextPlugin, XmlExport, PopulateScript, MultiEditorNumericPlugin, ConfigMigration, JsonExport, DbPluginSqlite3, MultiEditorDateTimePlugin, CsvImport, HtmlExport, PdfExport, ScriptingTcl, ScriptingSql, DbSqliteCipher, RegExpImport, SqlEnterpriseFormatter, MultiEditorBoolPlugin, SqlExport, PopulateConstant, Printing, PopulateRandom, PopulateRandomText **Version:** 3.1.0 **Operating System:** Windows, 64bit" "__label__enhancement Soft-proofing button icon too dull The soft-proofing icon is too dull, it looks disabled when it's not." "__label__bug Update folder, namespace, assembly name conventions # Overview Issue #6 involved refactoring the project naming convention for the view layer. This update should have also updated the folders, default namespaces, and assembly names to match the name change. # Acceptance Criteria - [x] Update project folders, default namespaces, and assembly names to match new naming convention for View projects. - [x] Review other project types and verify folder, namespace, and assembly name matches project name. # Work Performed * Renamed project folders * Migrated projects to root src directory * Reloaded projects in visual studio * Updated reference paths to related project dependencies * Verified build and run with droid " __label__bug Opportunity Page - Navigation Position The side navigation looks like it is sitting a bit low beneath the title on opportunity pages like MITI and Fellowship Advisory Board: ![opportunity-nav-bug](https://user-images.githubusercontent.com/2492510/35457516-09c6d38c-028e-11e8-8002-381ba2cacc0c.jpg) Can this be moved up and be made sticky when users scroll down these pages? "__label__bug nemo crashes during create_properties_window on jpg image I'm running LMDE 2 'Betsy'. I can reproduce this consistently. When I right click on a certain image file and click on ""Properties"" Nemo crashes instead of opening the properties window. See below for the output of bt and bt full on a sample core file dumped as a result of this crash: ``` bt: Thread 1 (Thread 0x7f00537909c0 (LWP 30705)): #0 ImportTIFF_Date (tiff=..., dateInfo=..., xmp=xmp@entry=0x1f8ac38, xmpNS=xmpNS@entry=0x7f005016f475 ""http://ns.adobe.com/exif/1.0/"", xmpProp=xmpProp@entry=0x7f0050170f7a ""DateTimeOriginal"") at ReconcileTIFF.cpp:1258 #1 0x00007f005015f6f0 in PhotoDataUtils::Import2WayExif (exif=..., xmp=xmp@entry=0x1f8ac38, iptcDigestState=iptcDigestState@entry=1) at ReconcileTIFF.cpp:1862 #2 0x00007f005015b8df in ImportPhotoData (exif=..., iptc=..., psir=..., iptcDigestState=iptcDigestState@entry=1, xmp=xmp@entry=0x1f8ac38, options=options@entry=4) at ReconcileLegacy.cpp:77 #3 0x00007f0050116dfe in JPEG_MetaHandler::ProcessXMP (this=) at JPEG_Handler.cpp:694 #4 0x00007f00501073ee in XMPFiles::GetXMP (this=this@entry=0x269d010, xmpObj=xmpObj@entry=0x7fffc7ea1540, xmpPacket=xmpPacket@entry=0x7fffc7ea1538, xmpPacketLen=xmpPacketLen@entry=0x7fffc7ea1534, packetInfo=packetInfo@entry=0x0) at XMPFiles.cpp:1370 #5 0x00007f0050105d0a in WXMPFiles_GetXMP_1 (xmpObjRef=0x269d010, xmpRef=0x1f8add0, clientPacket=0x0, packetInfo=0x0, SetClientString=0x7f00500bfa70 ::SetClientString(void*, char const*, unsigned int)>, wResult=0x7fffc7ea1590) at WXMPFiles.cpp:238 #6 0x00007f00500c23a8 in TXMPFiles::GetXMP (this=this@entry=0x1f92050, xmpObj=xmpObj@entry=0x25c8140, xmpPacket=xmpPacket@entry=0x0, packetInfo=packetInfo@entry=0x0) at ../public/include/client-glue/TXMPFiles.incl_cpp:295 #7 0x00007f00500bdea8 in xmp_files_get_new_xmp (xf=0x1f92050) at exempi.cpp:322 #8 0x00000000004494dd in load_location (info=, page=) at nemo-image-properties-page.c:643 #9 get_property_pages (provider=0x1f8aef0, files=0x7fffc7ea11d0) at nemo-image-properties-page.c:764 #10 0x000000000046ccf1 in append_extension_pages (window=0x25263e0) at nemo-properties-window.c:4598 #11 0x0000000000477426 in create_properties_window (startup_data=) at nemo-properties-window.c:4914 #12 is_directory_ready_callback (file=0x1f8aef0, data=0x2578830) at nemo-properties-window.c:5052 #13 0x00000000004cb5d0 in ready_callback_call (callback=0x25786d0, directory=0x237e400) at nemo-directory-async.c:1275 #14 call_ready_callbacks_at_idle (callback_data=) at nemo-directory-async.c:1857 #15 0x00007f0050651b6d in g_main_dispatch (context=0x1568e70) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3111 #16 g_main_context_dispatch (context=context@entry=0x1568e70) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3710 #17 0x00007f0050651f48 in g_main_context_iterate (context=context@entry=0x1568e70, block=block@entry=1, dispatch=dispatch@entry=1, self=) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3781 #18 0x00007f0050651ffc in g_main_context_iteration (context=0x1568e70, context@entry=0x0, may_block=may_block@entry=1) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3842 #19 0x00007f0050c0e20c in g_application_run (application=0x1537110, argc=argc@entry=1, argv=argv@entry=0x7fffc7ea19d8) at /tmp/buildd/glib2.0-2.42.1/./gio/gapplication.c:2282 #20 0x000000000042c679 in main (argc=1, argv=0x7fffc7ea19d8) at nemo-main.c:101 bt full: Thread 1 (Thread 0x7f00537909c0 (LWP 30705)): #0 ImportTIFF_Date (tiff=..., dateInfo=..., xmp=xmp@entry=0x1f8ac38, xmpNS=xmpNS@entry=0x7f005016f475 ""http://ns.adobe.com/exif/1.0/"", xmpProp=xmpProp@entry=0x7f0050170f7a ""DateTimeOriginal"") at ReconcileTIFF.cpp:1258 dateStr = 0x329b2a30 binValue = {year = 33074368, month = 0, day = 1, hour = 0, minute = 33074928, second = 0, hasDate = 232 '\350', hasTime = 3 '\003', hasTimeZone = 12 '\f', tzSign = 80 'P', tzHour = 32512, tzMinute = 0, nanoSecond = 0} secInfo = {id = 44208, type = 504, count = 0, dataPtr = 0x7f00500eb0e5 , dataLen = 33074928} found = secID = 37521 #1 0x00007f005015f6f0 in PhotoDataUtils::Import2WayExif (exif=..., xmp=xmp@entry=0x1f8ac38, iptcDigestState=iptcDigestState@entry=1) at ReconcileTIFF.cpp:1862 nativeEndian = false found = true foundFromXMP = tagInfo = {id = 36867, type = 2, count = 20, dataPtr = 0x329b2a30, dataLen = 20} #2 0x00007f005015b8df in ImportPhotoData (exif=..., iptc=..., psir=..., iptcDigestState=iptcDigestState@entry=1, xmp=xmp@entry=0x1f8ac38, options=options@entry=4) at ReconcileLegacy.cpp:77 haveXMP = false haveExif = true haveIPTC = false savedExif = warning: RTTI symbol not found for class 'TXMPMeta' {_vptr.TXMPMeta = 0x7f005039b890 +16>, xmpRef = 0x25be400} #3 0x00007f0050116dfe in JPEG_MetaHandler::ProcessXMP (this=) at JPEG_Handler.cpp:694 haveIPTC = exif = @0x1f8aef0: {_vptr.TIFF_Manager = 0x7f005039d410 , static kBigEndianPrefix = 1296891946, static kLittleEndianPrefix = 1229531648, static kEmptyTIFFLength = 8, static kEmptyIFDLength = 6, static kIFDEntryLength = 12, GetUns16 = 0x7f00501688a0 , GetUns32 = 0x7f00501688c0 , GetFloat = 0x7f00501688e0 , GetDouble = 0x7f0050168900 , PutUns16 = 0x7f0050168930 , PutUns32 = 0x7f0050168950 , PutFloat = 0x7f0050168970 , PutDouble = 0x7f0050168a70 , bigEndian = true, nativeEndian = false} psir = @0x1f8afb0: {_vptr.PSIR_Manager = 0x7f005039cd90 } iptcInfo = {id = 0, dataLen = 0, dataPtr = 0x0, origOffset = 0} readOnly = iptc = @0x268bf20: {_vptr.IPTC_Manager = 0x7f005039c150 , dataSets = std::multimap with 0 elements, iptcContent = 0x0, iptcLength = 0, offset190 = 0, length190 = 0, offset2xx = 0, length2xx = 0, changed = false, ownedContent = false, utf8Encoding = false} haveExif = havePSIR = iptcDigestState = 1 options = haveXMP = #4 0x00007f00501073ee in XMPFiles::GetXMP (this=this@entry=0x269d010, xmpObj=xmpObj@entry=0x7fffc7ea1540, xmpPacket=xmpPacket@entry=0x7fffc7ea1538, xmpPacketLen=xmpPacketLen@entry=0x7fffc7ea1534, packetInfo=packetInfo@entry=0x0) at XMPFiles.cpp:1370 applyTemplateFlags = 9 #5 0x00007f0050105d0a in WXMPFiles_GetXMP_1 (xmpObjRef=0x269d010, xmpRef=0x1f8add0, clientPacket=0x0, packetInfo=0x0, SetClientString=0x7f00500bfa70 ::SetClientString(void*, char const*, unsigned int)>, wResult=0x7fffc7ea1590) at WXMPFiles.cpp:238 xmpObj = warning: RTTI symbol not found for class 'TXMPMeta' {_vptr.TXMPMeta = 0x7f005039b890 +16>, xmpRef = 0x1f8add0} hasXMP = false packetStr = 0x7f00535bd325 ""I\211\303L\213L$0L\213D$(H\213|$ H\213t$\030H\213T$\020H\213L$\bH\213\004$H\203\304HA\377\343ffffff.\017\037\204"" packetLen = 0 thiz = 0x269d010 objLock = {lock = 0x269d020} #6 0x00007f00500c23a8 in TXMPFiles::GetXMP (this=this@entry=0x1f92050, xmpObj=xmpObj@entry=0x25c8140, xmpPacket=xmpPacket@entry=0x0, packetInfo=packetInfo@entry=0x0) at ../public/include/client-glue/TXMPFiles.incl_cpp:295 xmpRef = wResult = {errMessage = 0x0, ptrResult = 0x7f00535bd325, floatResult = 1.6341043372566727e-316, int64Result = 0, int32Result = 0} hasXMP = #7 0x00007f00500bdea8 in xmp_files_get_new_xmp (xf=0x1f92050) at exempi.cpp:322 xmp = 0x25c8140 txf = 0x1f92050 result = false #8 0x00000000004494dd in load_location (info=, page=) at nemo-image-properties-page.c:643 xf = 0x1f8ac38 file = 0x25b6f40 uri = 0x269d470 ""file:///[redacted]/IMG_20150319_102526.jpg"" #9 get_property_pages (provider=0x1f8aef0, files=0x7fffc7ea11d0) at nemo-image-properties-page.c:764 page = 0x269c960 real_page = 0x329b2a30 pages = 0x269c960 file = 0x1dec8b0 mime_type = 0x2634fc0 ""image/jpeg"" #10 0x000000000046ccf1 in append_extension_pages (window=0x25263e0) at nemo-properties-window.c:4598 provider = pages = l = providers = 0x25897a0 p = 0x25897a0 #11 0x0000000000477426 in create_properties_window (startup_data=) at nemo-properties-window.c:4914 No locals. #12 is_directory_ready_callback (file=0x1f8aef0, data=0x2578830) at nemo-properties-window.c:5052 new_window = 0x25263e0 #13 0x00000000004cb5d0 in ready_callback_call (callback=0x25786d0, directory=0x237e400) at nemo-directory-async.c:1275 No locals. #14 call_ready_callbacks_at_idle (callback_data=) at nemo-directory-async.c:1857 directory = 0x237e400 node = 0x24eeee0 next = callback = 0x25786d0 #15 0x00007f0050651b6d in g_main_dispatch (context=0x1568e70) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3111 dispatch = 0x7f005064e6c0 prev_source = 0x0 was_in_call = 0 user_data = 0x237e400 callback = 0x4cb490 cb_funcs = cb_data = 0x2573b00 need_destroy = source = 0x1cd6690 current = 0x159edb0 i = 2 #16 g_main_context_dispatch (context=context@entry=0x1568e70) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3710 No locals. #17 0x00007f0050651f48 in g_main_context_iterate (context=context@entry=0x1568e70, block=block@entry=1, dispatch=dispatch@entry=1, self=) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3781 max_priority = 200 timeout = 0 some_ready = 1 nfds = allocated_nfds = 3 fds = 0x1523480 #18 0x00007f0050651ffc in g_main_context_iteration (context=0x1568e70, context@entry=0x0, may_block=may_block@entry=1) at /tmp/buildd/glib2.0-2.42.1/./glib/gmain.c:3842 retval = #19 0x00007f0050c0e20c in g_application_run (application=0x1537110, argc=argc@entry=1, argv=argv@entry=0x7fffc7ea19d8) at /tmp/buildd/glib2.0-2.42.1/./gio/gapplication.c:2282 arguments = 0x1523480 status = 0 __FUNCTION__ = ""g_application_run"" #20 0x000000000042c679 in main (argc=1, argv=0x7fffc7ea19d8) at nemo-main.c:101 retval = application = 0x1537110 ``` " "__label__question Keep survey rendered and populated after being completed ### Are you requesting a feature, reporting a bug or ask a question? question ### What is the current behavior? I am using surveyJS as a nested resources form exploiting its ability to dynamically add nested questions/resources. I am forced to complete a survey in order to send the data to the server ### What is the expected behavior? I'd like to send data to the server (save the survey) whenever I like and give a feedback to the user without change the state of the survey, I need to keep it rendered with data. I don't actually need the state at all in my use case " __label__enhancement 与atx-server断开后自动唤醒屏幕 来源与testerhome上的回复 https://testerhome.com/topics/11546 ![image](https://user-images.githubusercontent.com/3281689/35572770-54d35686-0610-11e8-80fd-001bc0143d12.png) 目前想法:可以断开之后,直接再自动解锁屏幕,强制恢复wlan。 "__label__enhancement Robust large file transfers Extraterm already has some built in support for transferring files using its `show` and `from` commands but the current implementation is closer to a PoC than a robust system for moving data around. It is just enough to move bits of text around. What is needed is a full implementation which supports large files, is robust w.r.t. possible interference (think background jobs writing to the terminal), and is also binary safe. - [x] Spooling large files to disk - [x] Basic support - [x] Flow control - [x] Encrypting data on disk. This is needed to prevent Extraterm being a litter-bug with potentially sensitive user data. - [x] Deleting data from disk when it is no longer needed. - [ ] ~~Cleaning up previous data on disk. Needed in the case that Extraterm exits in an ungraceful way.~~ Moved to #74 - [x] Exposing large files via a pseudo web protocol to support streaming to the DOM - [x] Robust detection and handling of interference and unexpected crashes and exits at the remote end - [x] Downloads via `show` command - [x] Uploads, via `from` command - [x] Downloaded file viewer - [x] Streaming support in the viewers - [x] Image viewer " "__label__bug Not now button should redirect to Scratch 2.0 editor ### Expected Behavior The not now button should redirect to the Scratch 2.0 editor. ### Actual Behavior Nothing happens, just remains disfunctional. If it is not supposed to go to the Scratch 2.0 editor, then it should go somewhere else, I don't see the point of a button that doesn't do anything: ![scratchgui](https://user-images.githubusercontent.com/11379161/35487297-d3c1b962-042e-11e8-892e-270a913a98b0.gif) ### Steps to Reproduce Go to https://preview.scratch.mit.edu and click the button ;) ### Operating System and Browser Ubuntu 16.04 Chrome latest" "__label__bug rcp_stripe_charge_succeeded action is not firing After updating from 2.8.6 to 2.9.7 some of our custom functionality has broken. As far as I can see the culprit is the `rcp_stripe_charge_succeeded` action no longer firing? I've tested this for payments initiated by new registrations (both one-off payment and recurring) by adding this hook. ```php add_action( 'rcp_stripe_charge_succeeded', 'ilts_test_rcp_hook' ); function ilts_test_rcp_hook() { rcp_log( ""Hook fired on 'rcp_stripe_charge_succeeded'"" ); } ``` I'd expect to see something in the log but there's nothing there. Here's the debug log for a new registration payment: ``` 2018-1-06 13:26:28 - Started new registration for subscription #2 via stripe. 2018-1-06 13:26:30 - Started new registration for subscription #2 via stripe. 2018-1-06 13:26:31 - New payment inserted. ID: 645; User ID: 17366; Amount: 190.00; Subscription: Regular Membership; Status: pending 2018-1-06 13:26:31 - Member #17366 status set to pending. 2018-1-06 13:26:31 - Registration for user #17366 sent to gateway. Level ID: 2; Initial Amount: 190.00; Recurring Amount: 190.00; Auto Renew: false 2018-1-06 13:26:33 - Starting to process Stripe webhook. 2018-1-06 13:26:34 - Updating payment #645 with new data: array ( 'payment_type' => 'Credit Card One Time', 'transaction_id' => 'ch_1BhHgzIQ9UyUhi0xlRD161MZ', 'status' => 'complete', ) 2018-1-06 13:26:34 - Completing registration for member #17366 via payment #645. 2018-1-06 13:26:34 - Exiting Stripe webhook - no customer attached to event. 2018-1-06 13:26:35 - wp_mail() failure in RCP_Emails class. 2018-1-06 13:26:35 - Active email sent to user #17366. 2018-1-06 13:26:35 - Active email not sent to admin(s) - message is empty. 2018-1-06 13:26:35 - Member #17366 status changed from pending to active. 2018-1-06 13:26:35 - Updating recurring status for member #17366. Previous: false; New: false 2018-1-06 13:26:36 - wp_mail() failure in RCP_Emails class. 2018-1-06 13:26:36 - Payment Received email sent to user #17366. 2018-1-06 13:26:36 - Payment #645 completed for member #17366 via Stripe gateway. 2018-1-06 13:26:36 - Updating recurring status for member #17366. Previous: false; New: false 2018-1-06 13:26:36 - Starting to process Stripe webhook. 2018-1-06 13:26:37 - Starting to process Stripe webhook. 2018-1-06 13:26:37 - Exiting Stripe webhook - no customer attached to event. 2018-1-06 13:26:37 - Processing webhook for member #17366. 2018-1-06 13:26:37 - Processing Stripe charge.succeeded webhook. 2018-1-06 13:26:37 - A duplicate payment was detected for user #17366. Check to make sure both payments weren't recorded. Transaction ID: ch_1BhHgzIQ9UyUhi0xlRD161MZ 2018-1-06 13:26:38 - Starting to process Stripe webhook. 2018-1-06 13:26:38 - Processing webhook for member #17366. 2018-1-06 13:26:43 - Starting to process Stripe webhook. 2018-1-06 13:26:43 - Exiting Stripe webhook - no customer attached to event. ``` Here's the event log for this same member in Stripe: ![screen shot 2018-01-06 at 20 38 55](https://user-images.githubusercontent.com/7723105/34640277-25082018-f322-11e7-8505-6bc9fdade55b.jpg) The webhook response for the `customer.created` event (evt_1BhHgxIQ9UyUhi0xTAXOTna4) is ""no customer attached"". The webhook response for the `customer.updated` event (evt_1BhHgyIQ9UyUhi0ximOHMObO) is ""no customer attached"". The webhook response for the `customer.source.created` event (evt_1BhHgyIQ9UyUhi0xsaRuD6A7) is ""1"". The webhook response for the `charge.succeeded` event (evt_1BhHgzIQ9UyUhi0x8E30F2Zc) is ""duplicate payment found"". The webhook response for the ` customer.updated` event (evt_1BhHh2IQ9UyUhi0x7jcFSSU9) is ""no customer attached"". From the rcp log it looks like the payment is being recorded before the `charge.succeeded` webhook event is processed (looks like it's being stored in the first event `customer.created`?), so the duplicate payment check returning true prevents the `rcp_stripe_charge_succeeded` and `rcp_stripe_charge_succeeded` hooks from firing when they're supposed to? --- I also just realised the ""Started new registration for subscription 2 via stripe"" appears twice at the start of the log, is that supposed to happen? " "__label__question dx-file-uploader does not supported angular http interceptors **To help us process the issue more efficiently, please provide the following information:** - Specify the version of the *devextreme-angular* and *devextreme* packages you are using. devexteme version: devextreme-angular version: - Specify the type of the issue (check one with ""x""): [x] bug Report [ ] feature request [ ] support inquiry dx-file-uploader does not supported angular http interceptor" "__label__enhancement Endpoint can be toggled to be live or not - If endpoint is **live**, it should accept incoming HTTP requests and respond with the set auto-response, and log that request - If endpoint is **not live**, it should respond with status 404 and not log the request" "__label__enhancement [TW-331] User-definable next limit _David Patrick on 2013-08-11T19:20:04Z says:_ In an effort to improve the *next* report, and narrow down the selection of what to do ""next"", I think it would be advantageous to allow each user to define what that means. I might be looking for what to do next, as in, the very next few actions, and you might be looking at the next week, or month, or the next x regardless of dates. In most of those cases, asking ""what to do next"", the user will have some time-frame to consider as ""now plus a little"", that could be minutes, hours, days or weeks, but if it were settable in the .rc, it could be used to exclude everything beyond that applicable time-frame. next-limit=3days then everything that was not actionable between now and three days from now, could be excluded from the list. Tasks due > 3 days from now could be hidden too, a bonus for procrastinators. The object is to derive a short list of tasks that are perfect for NOW, by logically excluding everything that isn't. Allowing each user to define ""next"" will help." "__label__bug ""Role filter"" label should be aligned with the select box Currently the ""Role filter"" spans two columns and appears to be aligned with the center rather than above the right-hand column: ![misaligned](https://user-images.githubusercontent.com/407636/35832878-e107ca3e-0a9c-11e8-891b-3175567d8223.png) " "__label__bug Minor Issues (Typos and grammar corrections) I myself, despite only speaking English, don't have a perfect command of the language. But I have noticed some typos or incorrect usages of English, and I think by collating them all into one typo thread, and commenting to this issue thread when we find a typo, we can keep the devs from having to close unnecessary threads whenever another typo is found. So here's what I've found: > src/main/resources/assets/taiga/book/en_US/ores/firstwords.json > > TAIGA adds various new blocks and ores. You need to combine them in different alloys to get higher tiers,1 some better stats and special traits. > > > The ores have to be found at special places. On the next pages, you will be teached where to find the ores and how they have to be handeled. ""...combine them **into** different alloys to get higher **tiers, with** some better..."" ""...pages, you will be **taught** where..."" ""...they have to be **handled.**"" I know that that particular file has a note saying it needs to be changed before next release, but unless the devs have a reason not to allow it, any more typos found can go here too. Devs (Zkaface and IdleGandalf), if there's a good reason not to have a typo thread, you can feel free to close it, and I won't be offended. " __label__enhancement Disable Prefixing Nicks in Responses "__label__question Add more installation details to the readme Hello, I'd like to use your project for the same purposes (pingpong at the work place) but readme is not helpfull enough. Please expand readme for needed prerequisites, steps and information how to setup the whole project on the server. Secondly, should I also use your other project https://github.com/tomek199/elo-rating-core? I didn't have time to really dig in into it. Thanks, Maciek" __label__bug Test __label__bug Autorig dialogs not automatically populated __label__bug Archive root folder does not match slug The root folder of the plugin archive does not match the slug: Slug: `CastleRocktronics` Folder: `CastleRocktronics-0.5.0` [Rack community repo issue reference](https://github.com/VCVRack/community/issues/200) __label__bug Transparency: Group chat member list ![example](https://cdn.discordapp.com/attachments/282478449539678210/408676255668633600/unknown.png) __label__enhancement 게시글 열람기능 추가 - [ ] 액션/리듀서 작성 - [ ] thunk 작성 - [ ] 데이터 구조 설계 - [ ] 컨테이너 컴포넌트 작성 "__label__bug WASAPIOUT 5.1 Channel --> IAudioClient::Initialize caused an error: 0x88890008, ""Unknown HRESULT"" I try to play a AAC file in a endless stream to Realtek High Definition Speaker with WasapiOut. Without changing the Waveformat or the Out class i get this Error. > IAudioClient::Initialize caused an error: 0x88890008, ""Unknown HRESULT"" This File has this WavFormat. > {ChannelsAvailable: 6|SampleRate: 48000|Bps: 1152000|BlockAlign: 24|BitsPerSample: 32|Encoding: Extensible|SubFormat: 00000003-0000-0010-8000-00aa00389b71|ChannelMask: SpeakerFrontLeft, SpeakerFrontRight, SpeakerFrontCenter, SpeakerLowFrequency, SpeakerBackLeft, SpeakerBackRight} If i use WaveOut the sound is ok. When i changed the channels from 6 to stereo all is functional but Sound is not so good as before. If i set _soundOut.UseChannelMixingMatrices = true; this have no effort. I am a amateur in c#. What is wrong ??? Should i Use WaveOut or how can i solve this problem with WasApiOut?? Stacktrace: / StackTrace // bei CSCore.SoundOut.WasapiOut.InitializeInternal() // bei CSCore.SoundOut.WasapiOut.Initialize(IWaveSource source) // bei AudioSplit.Form1.PlayFile(String file) Example: public void PlayFile(String file) { var selectedDevice = MMDeviceEnumerator.EnumerateDevices(DataFlow.Render, DeviceState.Active).First(); var client = AudioClient.FromMMDevice(selectedDevice); _soundOut.Stop(); if (_notificationSource != null) _notificationSource.Dispose(); var source = CodecFactory.Instance.GetCodec(file); var ok = client.IsFormatSupported(AudioClientShareMode.Shared, source.WaveFormat, out WaveFormat wavfmt); _sampleSource = source.ToSampleSource(); //_sampleSource = _sampleSource.ToStereo(); //source.Position = 0; _notificationSource = new NotificationSource(_sampleSource) { Interval = 100 }; _notificationSource.BlockRead += (o, args) => { // UpdatePosition(); }; waveSource = _notificationSource.ToWaveSource(); // Error with this waveformat //_waveFormat = {ChannelsAvailable: 6|SampleRate: 48000|Bps: 1152000|BlockAlign: 24|BitsPerSample: 32|Encoding: Extensible|SubFormat: 00000003-0000-0010-8000-00aa00389b71|ChannelMask: SpeakerFrontLeft, SpeakerFrontRight, SpeakerFrontCenter, SpeakerLowFrequency, SpeakerBack... loopStream = new LoopStream(waveSource); _soundOut.Initialize(waveSource); _soundOut.Play(); }" __label__enhancement Update Dockerfile with tools Update Dockerfile to download and include - tools ``` http://www.cellorganizer.org/Downloads/v2.7/docker/tools.tgz ``` "__label__enhancement Pytest plugin Hello, is there any reason why this package doesn't include pytest support? Is this planned? I would like to propose implementing pytest plugin featuring fixtures for WSClient etc. It would be just great to have more flexibility with choice of a test runner. Regards, Dominik" "__label__bug ElasticSearch query fails on ES 6 ### Issue Summary Using the public docker images which seem to be based on Redash 4 (beta?) trying to setup a query for an ES 6 backend results in Error running query: Failed to execute query. Return Code: 500 Reason: {""error"":{""root_cause"":[{""type"":""illegal_state_exception"",""reason"":""source and source_content_type parameters are required""}],""type"":""illegal_state_exception"",""reason"":""source and source_content_type parameters are required""},""status"":500} ### Steps to Reproduce 1. Deploy redash using the redash docker compose file 2. Deploy ES 6 backend 3. Setup ElasticSearch datasource in Redash 4. Try a simple query ### Technical details: * Redash Version: 4.0.0 (not sure about the exact built number - can't determine it from the docker image) * Browser/OS: Redash in docker on Ubuntu 17.10 * How did you install Redash: redash docker compose file from github pulling in redash:latest from docker hub Looks like redash uses the `source` query parameter but as per https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html this also requires to provide a `source_content_type` parameter. " __label__enhancement Show an error when a fully-locked DESFire card is scanned. We show debug information whenever a fully locked DESFire card is scanned (like a DESFire-based Oyster card). We should show some warning like what is done for Mifare Classic and Ultralight cards. __label__bug feed.xml is not built on GitHub Pages Refs: * https://github.com/Yukaii/yukaii.github.io/issues/16 * https://github.com/Yukaii/yukaii.github.io/commit/05e4af3085386961ad1dbd2f6048613d78b2d50a 奇妙 __label__enhancement Nettoyer le code mort __label__enhancement Lenses for record updates __label__enhancement Not working with MySQL server 8.0 Please update queries from project to work with MySQL server 8.0. "__label__bug Undefined variable: b:denite_context **Warning: I will close the issue without the minimal init.vim and the reproduction instructions.** # Problems summary `b:denite_context` variable does not exist in `expr` map function. ## Expected Be able to access the context from a user function. ## Environment Information (Required!) * denite version(SHA1): bd88b367f6d159dfd685e1088dfbfd9f83d63e04 * OS: macOS * Vim/neovim version: neovim ## Provide a minimal init.vim with less than 50 lines (Required!) ```vim set runtimepath+=/Users/jniehus/Downloads/dev/denite.nvim function! ToggleSorter(sorter) abort let l:sorters = split(b:denite_context.sorters, ',') if index(l:sorters, a:sorter) == -1 call add(l:sorters, a:sorter) else call remove(l:sorters, index(l:sorters, a:sorter)) endif let b:denite_context.sorters = join(l:sorters, ',') return '' endfunction call denite#custom#map('insert', '', \ 'ToggleSorter(""sorter_ftime"")', 'noremap expr nowait') ``` ## The reproduce ways from neovim starting (Required!) 1. Open `:Denite file`. 2. Press `` to attempt to toggle `sorter_ftime`. The full error: ``` [denite] Traceback (most recent call last): [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/__init__.py"", line 29, in start [denite] return ui.start(args[0], args[1]) [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/ui/default.py"", line 71, in start [denite] self._start(context['sources_queue'][0], context) [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/ui/default.py"", line 136, in _start [denite] status = self._prompt.start() [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/prompt/prompt.py"", line 201, in start [denite] raise e [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/prompt/prompt.py"", line 191, in start [denite] interval=self.harvest_interval, [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/prompt/keymap.py"", line 346, in harvest [denite] keystroke = self.resolve(nvim, previous, nowait=False) [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/prompt/keymap.py"", line 284, in resolve [denite] return self._resolve(nvim, definition) [denite] File ""/Users/jniehus/Documents/vimconfig/vimfiles/bundle/denite.nvim/rplugin/python3/denite/prompt/keymap.py"", line 299, in _resolve [denite] rhs = Keystroke.parse(nvim, nvim.eval(definition.rhs)) [denite] File ""/Users/jniehus/Documents/dev/py3.6.2env/lib/python3.6/site-packages/neovim/api/nvim.py"", line 226, in eval [denite] return self.request('nvim_eval', string, **kwargs) [denite] File ""/Users/jniehus/Documents/dev/py3.6.2env/lib/python3.6/site-packages/neovim/api/nvim.py"", line 131, in request [denite] res = self._session.request(name, *args, **kwargs) [denite] File ""/Users/jniehus/Documents/dev/py3.6.2env/lib/python3.6/site-packages/neovim/msgpack_rpc/session.py"", line 98, in request [denite] raise self.error_wrapper(err) [denite] neovim.api.nvim.NvimError: b'Vim(let):E121: Undefined variable: b:denite_context' [denite] Please execute :messages command. Press ENTER or type command to continue ```" "__label__bug findOrBuild doesn't create instance with includes ## What are you doing? ``` ModelA.findOrBuild({ defaults : data, where : where, include : [{ model : ModelB }] }) ``` ## What do you expect to happen? I expected the include to be passed along to the new instance. findOrCreate does pass this along so the inconsistency was unexpected. ## What is actually happening? The instance is only built with values and not options. I'm using v3 currently until we find time to upgrade but its still the same in v4: https://github.com/sequelize/sequelize/blob/3cea5c4f84e0b7a5c0ef5548d318d786d495eb4e/lib/model.js#L2059 Changing the line to `instance = this.build(values, options);` solves the issue. " "__label__enhancement Ativar log de acesso via API Rest-Like Todo acesso realizado pelo usuário, via sistema, é registrado na seção de logs. É possível aplicar o log de acesso para a API Rest-Like? quando realizar uma chamada para o serviço **api/auth** e a autenticação for realizada com sucesso." "__label__enhancement Rethink issues that are created for problematic imports IDEBUG-702 After full ES6 syntax is available (IDE-1580) and implementation of import features is included (IDE-1744) revisit issue markers generated for import related elements. In particular: - ambiguous import: is it needed, when it is visible to user - does it make sense to put multiple issues on the element, if not, what is hierarchy of issues - unused import issue, and its relation to ambiguous imports and other errors Note: related logic is in {{N4JSImportValidator}} and {{ImportedElementsScopingHelper}} " __label__bug uicontrols for data_channel_names being duplicated on moving to a new file "__label__bug Using a named targetPort in application Service breaks Contour Kubernetes version 1.8.5-gke.0 on GKE Using a named port like below for the targetPort results in ""no healthy upstream"" error. ``` apiVersion: v1 kind: Service metadata: name: specs-web-service namespace: specs labels: app: specs tier: web spec: type: NodePort ports: - name: specs-web-service-port port: 80 protocol: TCP targetPort: http-server selector: app: specs tier: web ``` Changing ""http-server"" to ""8080"" resolves the issue immediately." "__label__bug Support for International Currencies ## Description Currently, only Philippines peso is supported in the app. The app should support most, if not all, international currencies. There should be an option to change this in the Settings page and the currency symbol should be applied accordingly throughout the app. ## Other Comments Try to use a library that retrieves and updates the list of currencies and symbols." "__label__bug Wrong return value for path.pointAt [path.pointAt()](http://svgjs.com/elements/#path-pointat) returns a native SVGPoint, not an object" "__label__enhancement UI improvement of the ""used by"" homepage's section A suggestion of UI that improves the way how ""popular website using DocSearch"" are featured. ![docsearch](https://cloud.githubusercontent.com/assets/1101220/17886735/79d53a7a-6923-11e6-85fc-43fc42074f61.png) Additionally to the new layout, I suggest we should also update the wording. " "__label__enhancement Support multi path per directive I want to support multi path per directive like the following example: ``` apache mrubyHandlerMiddleMulti /path/to/A.rb /path/to/B.rb /path/to/C.rb ``` First, mod_mruby run `A.rb`. Then run `B.rb`, Finally run `C.rb` at mrubyHandlerMiddle phase. " "__label__enhancement Liquid System Re-write - Maximum pressure limit for blocks, possibly with explosions if that pressure gets too high - More realistic uniform ""flow"" - Support for more liquid flowing through a single pipe - Better visuals in general" __label__enhancement Hide/Show Total **On item page:** - Add Total control only when at least one item is added - Hide it if there is no Item "__label__bug Provider with HTTPS defaults fails with Invalid config.SSLCertPEM The default value for the `ssl_cert_pem` argument results in an invalid `SSLCertPem` configuration value, rather than omitting it to use the default CA store for validation. ``` 2018-02-06T19:35:20.714+0200 [DEBUG] plugin.terraform-provider-kontena: 2018/02/06 19:35:20 [DEBUG] config client.Config{URL:""https://wispy-sun-3205.platforms.us-east-1.kontena.cloud"", SSLCertPEM:[]uint8{}, SSLServerName:"""", ClientID:"""", ClientSecret:"""", Token:(*client.Token)(nil), Logger:(*kontena.Logger)(0x139d720)} 2018-02-06T19:35:20.714+0200 [DEBUG] plugin.terraform-provider-kontena: 2018/02/06 19:35:20 [DEBUG] connect https://wispy-sun-3205.platforms.us-east-1.kontena.cloud (token &{2c6778fa27a379fc2f020bb3b99b3f621e8e540fe4ce5389bda0267ce6ebac9e 0001-01-01 00:00:00 +0000 UTC }) 2018/02/06 19:35:20 [ERROR] root: eval: *terraform.EvalConfigProvider, err: Invalid config.SSLCertPEM 2018/02/06 19:35:20 [ERROR] root: eval: *terraform.EvalSequence, err: Invalid config.SSLCertPEM 2018/02/06 19:35:20 [ERROR] root: eval: *terraform.EvalOpFilter, err: Invalid config.SSLCertPEM 2018/02/06 19:35:20 [ERROR] root: eval: *terraform.EvalSequence, err: Invalid config.SSLCertPEM 2018/02/06 19:35:20 [TRACE] [walkImport] Exiting eval tree: provider.kontena 2018/02/06 19:35:20 [TRACE] dag/walk: upstream errored, not walking ""kontena_grid.demo (import id: demo-3)"" 2018/02/06 19:35:20 [TRACE] dag/walk: upstream errored, not walking ""kontena_grid.demo"" 2018/02/06 19:35:20 [TRACE] dag/walk: upstream errored, not walking ""kontena_external_registry.test"" 2018/02/06 19:35:20 [TRACE] dag/walk: upstream errored, not walking ""provider.kontena (close)"" Error: provider.kontena: Invalid config.SSLCertPEM ```" "__label__bug [TW-41] Tasks in subprojects are not counted in project completion _Renato Alves on 2014-01-22T20:04:10Z says:_ As a follow up of the discussion in IRC: jck | Tasks in subprojects are not counted in project completion, is that a bug? pbeckingham | jck: Arguable. Maybe. pbeckingham | Should probably be written up, and discussed." "__label__enhancement accidentals block Rather than separate blocks for sharp and flat, it would be good to include an accidentals block that can take as a parameter double sharp, sharp, natural, flat, and double flat. The current sharp and flat blocks would use macros to expand to this new form." __label__bug The content on the slides does not appear if you have a single slide "__label__enhancement Allow for J>1 matches per unit in variance estimator Similar to #15. Where #15 deals with the matched-imputation step for point estimation, this issue regards the matching estimator for `sigma_sq(X,W)` as introduced by Abadie and Imbens 2006" __label__enhancement Remove unnecessary files from project to decrease size Remove unnecessary files from project to decrease size. https://stackoverflow.com/questions/6373482/remove-all-unused-resources-from-an-android-project __label__enhancement Preserve Last Letter of Censored Word It has been requested to have an option to preserve the last letter of the filtered word (in addition to the first letter) when using censor mode. "__label__bug [Security] LDAP Injection in quick search Hello, Currently, it is possible to make an LDAP injection when using quick search because `$search_query` is use directly in `$ldap_filter`. Steps to reproduce : - Go https://ltb-project.org/star-pages/ - In quick search, enter `c3po)(uid=*sky` => WP returns three results : c3po, lskywalker, askywalker With this kind of `$search_query`, you can request an LDAP attribute which not mentioned in `$quick_search_attributes`." __label__enhancement Ajouter le support AMP Ajouter le support AMP dans le skin par défaut et voir pour utiliser les widgets et rendre les fichiers conf disponible depuis le skin __label__enhancement Allow sub-graphs to specify output types "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/f0tTfKnUD5OsMzSmw6W6GDH6ct0GKdTKlQXUu-a0blX7zZ7dSnHP0e2dDArpbGE50/SjMVL5_z3WdpjD-Z6kip3xlgsim6ohOsmL-YekM1e956uDTzDQ6Ol8ssy-UQyFkb0/5VfpxtVHuJlXN_9zgQ9XEObwQWt3d6-Qf-xoDfB8cnY1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug Exocomps are not showing up On the Exocomps screen, the exocomps will not show up. The simulator running does have exocomps attributed to it. ### Requested By: Daniel Kirkpatrick (daniel@waterglen.net) ### Priority: 3" __label__enhancement tr 03-create.md Traducir la lección 03-create. Asignada inicialmente a Shirley. __label__bug [TW-1716] on-modify hooks fail if `date.iso` is not set _Jens Erat on 2015-10-17T12:25:10Z says:_ A simple hook simply yielding the modified task fails if `date.iso` is not `yes`. ``` Unrecognized Taskwarrior file format. ``` `task import` fails with a more helpful error message: ``` > '20151017T121512Z' is not a valid date in the '' format. ``` Might be related with TW-1715. {code} $ task show |grep date date.iso no dateformat Y-M-D dateformat.annotation dateformat.edit Y-M-D H:N:S dateformat.holiday YMD dateformat.info Y-M-D H:N:S dateformat.report {code} "__label__bug Web app Registrazione/Mutazione tutti i dati Permesso di soggiorno ad Italiano Data test 04/04/2017 - Ambiente test (dptest) Per il soggetto ID ANPR 4225547 inserito permesso di soggiorno stante sia italiano. Il sistema non ha segnalato errori. Grazie Stefania Amprimo, Silvia Floramo, Liliana Guarraia - Comune di Torino " "__label__bug Sometimes the compose box is not fully cleared This seems to be Android-specific issue. When sending a message, focusing on the compose box sometimes preserves the last part of the message." "__label__bug [TW-255] 'Mask' instead of 'iMask' shown in task 572 info (recurring task) _Benjamin Weber says:_ *1. What happened?*
 task 572 info  Name          Value                                                  ID            572 Description   Lese 20 min in #2 + DAllen Buch Status        Pending Project       gtd                                                    Recurrence    daily Parent task   1ed5a9ae-f48d-48b4-a3ec-0ad78e14053c                   Mask Index    25 Due           11/14/2013 23:00:00                                    Tags          daily UUID          2d014f48-0840-4644-9914-0effa9ea9933                   Entered       11/14/2013 17:41:56 (12 mins) Urgency       10.44                                                  Last modified 11/13/2013 14:37:57 (1 day) 
*2. What did I expect to happen?*
 task 572 edit … # Name               Editable details # -----------------  ---------------------------------------------------- # ID:                572 # UUID:              2d014f48-0840-4644-9914-0effa9ea9933 # Status:            Pending # Mask: # iMask:             25   Project:           gtd 
iMask is shown in task 572 edit, not in task 572 info. *3. task diag*
 task 2.2.0   Platform: Darwin  Compiler    Version: 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)       Caps: +stdc +stdc_hosted +200112 +LP64 +c1 +i4 +l8 +vp8  Build Features      Built: Jul 16 2013 17:25:35     Commit: 05f7948      CMake: 2.8.11.1       Caps: -pthreads +srandom +random +uuid    libuuid: libuuid + uuid_unparse_lower  Configuration       File: /Users/X/.taskrc (found), 1485 bytes, mode 100644       Data: /Users/X/.task (found), dir, mode 40755     Server:     Locking: Enabled  External Utilities        scp: (found)      rsync: version 2.6.9       curl: curl 7.30.0  Tests   UUID gen: 1000 unique UUIDs generated.      $TERM: xterm-256color (217x37)       Dups: Scanned 1822 tasks for duplicate UUIDs:             No duplicates found 
" "__label__question Libressl works on ARM64? I couldn't get LibreSSL ARM64 binaries work on Windows OS. Does LibreSSL ARM64 binaries work in other OS flavors (unix / Linux, etc)? Is there any code that is the specific to ARM64 that might cause this? I am using LibreSSL from openSSH. When I try to generate keys (ssh-keygen.exe -A) it gets into an infinite loop in BN_generate_prime_ex(). Also, If I try to use keys generated on my X86 machine, I get ""Invalid format"" error. Unfortunately I couldn't debug further as I couldn't load LibreSSL binaries in debug mode. Here is the call stack, **call stack 1** ``` \# Child-SP RetAddr Call Site 00 000000cc`808fd410 00007ffb`b4b33c40 libcrypto!bn_mul_add_words+0x74 01 000000cc`808fd410 00007ffb`b4b33e90 libcrypto!BN_from_montgomery+0x150 02 000000cc`808fd470 00007ffb`b4b2d018 libcrypto!BN_mod_mul_montgomery+0x80 03 000000cc`808fd4c0 00007ffb`b4b372f0 libcrypto!BN_mod_exp_mont_consttime+0x418 04 000000cc`808fd580 00007ffb`b4b36ebc libcrypto!BN_is_prime_fasttest_ex+0x340 05 000000cc`808fd600 00007ffb`b4ba671c libcrypto!BN_generate_prime_ex+0x39c 06 000000cc`808fe690 00007ff7`573ad5c8 libcrypto!RSA_generate_key_ex+0x16c 07 (Inline Function) --------`-------- ssh_keygen!rsa_generate_private_key+0x78 [c:\ba\1\s\openssh-portable\sshkey.c @ 1404] 08 000000cc`808fe750 00007ff7`573a4908 ssh_keygen!sshkey_generate+0x410 [c:\ba\1\s\openssh-portable\sshkey.c @ 1563] 09 000000cc`808febc0 00007ff7`573a9074 ssh_keygen!do_gen_all_hostkeys+0x298 [c:\ba\1\s\openssh-portable\ssh-keygen.c @ 1052] 0a 000000cc`808ff120 00007ff7`573a9ad4 ssh_keygen!main+0xa1c [c:\ba\1\s\openssh-portable\ssh-keygen.c @ 2781] 0b 000000cc`808ff860 00007ff7`573e7984 ssh_keygen!wmain+0xac [c:\ba\1\s\openssh-portable\contrib\win32\win32compat\wmain_common.c @ 61] 0c (Inline Function) --------`-------- ssh_keygen!invoke_main+0x24 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 90] 0d 000000cc`808ff890 00007ff7`573e7a00 ssh_keygen!__scrt_common_main_seh+0x124 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 283] 0e (Inline Function) --------`-------- ssh_keygen!__scrt_common_main+0x8 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 325] 0f 000000cc`808ff8d0 00007ffb`e0115b64 ssh_keygen!wmainCRTStartup+0x10 [f:\dd\vctools\crt\vcstartup\src\startup\exe_wmain.cpp @ 16] 10 000000cc`808ff8e0 00007ffb`e2580d94 KERNEL32!BaseThreadInitThunk+0x34 11 000000cc`808ff920 00000000`00000000 ntdll!RtlUserThreadStart+0x44 ``` **call stack 2** ``` \ # Child-SP RetAddr Call Site 00 000000cc`808fd600 00007ffb`b4b36c7c libcrypto!BN_mod_word+0x44 01 000000cc`808fd600 00007ffb`b4ba671c libcrypto!BN_generate_prime_ex+0x15c 02 000000cc`808fe690 00007ff7`573ad5c8 libcrypto!RSA_generate_key_ex+0x16c 03 (Inline Function) --------`-------- ssh_keygen!rsa_generate_private_key+0x78 [c:\ba\1\s\openssh-portable\sshkey.c @ 1404] 04 000000cc`808fe750 00007ff7`573a4908 ssh_keygen!sshkey_generate+0x410 [c:\ba\1\s\openssh-portable\sshkey.c @ 1563] 05 000000cc`808febc0 00007ff7`573a9074 ssh_keygen!do_gen_all_hostkeys+0x298 [c:\ba\1\s\openssh-portable\ssh-keygen.c @ 1052] 06 000000cc`808ff120 00007ff7`573a9ad4 ssh_keygen!main+0xa1c [c:\ba\1\s\openssh-portable\ssh-keygen.c @ 2781] 07 000000cc`808ff860 00007ff7`573e7984 ssh_keygen!wmain+0xac [c:\ba\1\s\openssh-portable\contrib\win32\win32compat\wmain_common.c @ 61] 08 (Inline Function) --------`-------- ssh_keygen!invoke_main+0x24 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 90] 09 000000cc`808ff890 00007ff7`573e7a00 ssh_keygen!__scrt_common_main_seh+0x124 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 283] 0a (Inline Function) --------`-------- ssh_keygen!__scrt_common_main+0x8 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 325] 0b 000000cc`808ff8d0 00007ffb`e0115b64 ssh_keygen!wmainCRTStartup+0x10 [f:\dd\vctools\crt\vcstartup\src\startup\exe_wmain.cpp @ 16] 0c 000000cc`808ff8e0 00007ffb`e2580d94 KERNEL32!BaseThreadInitThunk+0x34 0d 000000cc`808ff920 00000000`00000000 ntdll!RtlUserThreadStart+0x44 ``` " __label__enhancement Check encryption ciphers and order To get Perfect Forward Secrecy Source: - https://scotthelme.co.uk/getting-an-a-on-the-qualys-ssl-test-windows-edition/ "__label__enhancement [TW-1270] New design of Time tracking - master issue _Renato Alves on 2014-02-21T15:44:48Z says:_ We are currently in the process of redesigning the time tracking functionality in taskwarrior. Since several issues exist already related with time tracking, this issue will serve as a hub to connect and collect all the use cases reported by users as well as the place for progress report." "__label__bug candlestick chart encode option doesn't work for multi-dimension dataset **One-line summary [问题简述]** encode options doesn't work properly for chart type 'candlestick' with dataset with multiple dimensions. **Version & Environment [版本及环境]** ECharts version: 4.0.2 (latest) Browser version: Chrome Version 63.0.3239.132 **Expected behaviour** given a dimension list of [""date"",""open"",""high"",""low"",""close"",""volume"",""haOpen"",""haHigh"",""haLow"",""haClose"",""sma9""] i would like to construct series with my choice of dimensions in encode, for example y: [""haOpen"",""haClose"",""haLow"",""haHigh""]. Note that my dataset is using the OHLC notation (open, high, low, close) and echarts needs open, close, low, high. **ECharts option [ECharts配置项]** ``` option = { xAxis: { type: ""category"", scale: true }, yAxis: { type: ""value"", scale: true, boundaryGap: ['5%', '5%'] }, dataset: { // dimensions: , source: [[""date"",""open"",""high"",""low"",""close"",""volume"",""haOpen"",""haHigh"",""haLow"",""haClose"",""sma9""], [""2018-01-09 14:30:00"",14636.21,14682.6,14401.0,14659.57,349.069176,14647.89,14682.6,14401.0,14594.845,0.0], [""2018-01-09 15:00:00"",14650.0,14700.0,14238.99,14347.43,459.735215,14621.3675,14700.0,14238.99,14484.105,0.0], [""2018-01-09 15:30:00"",14374.72,14434.2,14011.05,14041.03,697.055035,14552.73625,14552.73625,14011.05,14215.25,0.0], [""2018-01-09 16:00:00"",14072.87,14497.06,14064.13,14349.0,671.165463,14383.993125,14497.06,14064.13,14245.765,0.0], [""2018-01-09 16:30:00"",14369.98,14640.99,14340.0,14560.48,416.750768,14314.8790625,14640.99,14314.8790625,14477.8625,0.0], [""2018-01-09 17:00:00"",14551.42,14800.0,14551.41,14749.55,357.445717,14396.37078125,14800.0,14396.37078125,14663.095000000001,0.0], [""2018-01-09 17:30:00"",14745.0,14766.2,14485.0,14654.96,306.727704,14529.732890625,14766.2,14485.0,14662.789999999999,0.0], [""2018-01-09 18:00:00"",14655.01,14829.0,14585.01,14800.1,194.858965,14596.261445312499,14829.0,14585.01,14717.28,0.0], [""2018-01-09 18:30:00"",14800.1,14998.62,14792.03,14951.01,313.268531,14656.770722656249,14998.62,14656.770722656249,14885.44,0.0], [""2018-01-09 19:00:00"",14968.0,14982.0,14778.47,14810.0,214.504459,14771.105361328126,14982.0,14771.105361328126,14884.6175,16213.681111111111], [""2018-01-09 19:30:00"",14810.0,14973.49,14799.95,14949.98,144.830078,14827.861430664063,14973.49,14799.95,14883.355,16245.94888888889], [""2018-01-09 20:00:00"",14949.98,14990.0,14865.49,14916.91,145.574797,14855.608215332031,14990.0,14855.608215332031,14930.595000000001,16309.224444444444], [""2018-01-09 20:30:00"",14914.03,14945.01,14799.01,14803.44,146.21296,14893.101607666016,14945.01,14799.01,14865.372500000001,16393.936666666665], [""2018-01-09 21:00:00"",14803.46,14863.93,14700.44,14799.0,190.167582,14879.237053833009,14879.237053833009,14700.44,14791.7075,16443.936666666665], [""2018-01-09 21:30:00"",14798.99,14798.99,14650.0,14717.82,209.543776,14835.472276916506,14835.472276916506,14650.0,14741.449999999999,16461.41888888889], [""2018-01-09 22:00:00"",14717.82,14781.56,14600.0,14615.9,164.859485,14788.461138458253,14788.461138458253,14600.0,14678.82,16446.568888888887], [""2018-01-09 22:30:00"",14647.09,14861.56,14615.4,14755.03,228.445843,14733.640569229126,14861.56,14615.4,14719.77,16457.687777777777], [""2018-01-09 23:00:00"",14755.33,14780.0,14680.0,14702.33,150.779654,14726.705284614563,14780.0,14680.0,14729.415,16446.824444444443], [""2018-01-09 23:30:00"",14709.49,14709.49,14420.0,14462.81,274.752199,14728.060142307282,14728.060142307282,14420.0,14575.447499999998,16392.579999999998], [""2018-01-10 00:00:00"",14452.0,14536.36,14407.77,14435.0,279.156552,14651.753821153641,14651.753821153641,14407.77,14457.782500000001,16350.913333333334], [""2018-01-10 00:30:00"",14435.0,14459.94,14182.84,14254.92,435.050575,14554.768160576821,14554.768160576821,14182.84,14333.175,16273.684444444445], [""2018-01-10 01:00:00"",14234.7,14290.56,14125.0,14259.98,422.926221,14443.97158028841,14443.97158028841,14125.0,14227.560000000001,16200.692222222224], [""2018-01-10 01:30:00"",14259.98,14454.95,14144.13,14400.0,377.788542,14335.765790144205,14454.95,14144.13,14314.765,16155.865555555552], [""2018-01-10 02:00:00"",14401.0,14480.0,13750.0,13972.46,582.921859,14325.265395072103,14480.0,13750.0,14150.865,16064.027777777777] ] }, series: [{ type: ""candlestick"", encode: { x: ""date"", y: [""open"", ""close"", ""low"", ""high""], tooltip: [""open"", ""high"", ""low"", ""close""] } }] } ``` **Other comments [其他信息]** i've created a jsfiddle example for my configuration: https://jsfiddle.net/v7d5ahdb/1/" "__label__bug Nzbget category reset after upgrade to v0.2.0.910 from v0.2.0.870 **Description:** After upgrading, Radarr stopped processing movies after they were downloaded. They were successfully sent to the client, but afterwards Radarr did nothing. I noticed the download category was set to ""Movies"" when the actual category in Nzbget is ""movies"". I opened the sqlite db from a backup and it had this: `{ ""host"": ""nzbget"", ""port"": 6789, ""username"": """", ""password"": """", ""tvCategory"": ""movies"", ""recentTvPriority"": 0, ""olderTvPriority"": 0, ""useSsl"": false, ""addPaused"": false }` Once I changed the setting in Radarr back to ""movies"" everything began processing correctly. I suspect the fix for #2211 caused it to fall back to the default when the json is loaded with the old property name. **Radarr Version:** v0.2.0.910 **Logs:** N/A " "__label__enhancement Add database to Github The database is really the core of this project, so it would be beneficial to have a copy of the entire schema in the repo so people can use the project right away, instead of having to run the utility for several hours to populate it. Look into how to do this." "__label__enhancement Přidat modelovému času stav ""inactive"" " __label__enhancement Run estlint in travis * Add eslint in scripts "__label__question Add mode for checking logs with os::linux::local Hello, It would be interessing to add a mode for os::linux::local::plugin to seek error messages in a log file. (like check_logfiles for windows) The mode ""files-date"" and ""files-size"" doesn't seems to provide this functionnality. centreon_plugins.pl --plugin=os::linux::local::plugin --list-mode [...] Modes Available: cmd-return connections cpu cpu-detailed directlvm-usage diskio files-date files-size inodes list-interfaces list-partitions list-storages load memory packet-errors paging process quota storage swap systemd-sc-status traffic uptime [...]" "__label__enhancement Gridlines First of all: Lovely and impressive work, CMDR! Saw this posted in the EDSM Discord: https://cdn.discordapp.com/attachments/159258939756773376/407263181573062657/unknown.png May I suggest adding some gridlines? This would make it easier identifying (or looking up) certain features. How about discreet gridlines every 10kly, with small 1kly ticks along them? Cheers, CMDR Redfox" __label__enhancement HTML enhancements - [x] Remove status 'online' status on Inbox - [x] Add place to reference feedback - [x] Move 'Update Password' button "__label__question What would you like to be added to Construct? Currently in the queue is enum.IntEnum support (#456 ), Pickled class (#508) , and a [compiler](https://construct.readthedocs.io/en/latest/compilation.html) for performance. But what would you like to add to it? What was recently added, is on Transition page: https://construct.readthedocs.io/en/latest/transition29.html " "__label__enhancement Merge DoS mitigation into Tor When we merge the branch, we should add ""dos"" as a failure reason." "__label__bug Visualization problem https://github.com/mctools/ncrystal/blob/6dd1504ca521ce7f717f5f455efb07afea5329e2/ncrystal_mcstas/NCrystal_sample.comp#L327 According to the second comment in the implementation of the _mcdis_rectangle_ function: ``` void mcdis_rectangle(char* plane, double x, double y, double z, double width, double height){ /* draws a rectangle in the plane */ /* x is ALWAYS width and y is ALWAYS height */ ``` the linked line should be replaced with `mcdis_rectangle(""yz"", 0., 0., 0., geoparams.dz, `geoparams.dy);` to get the projections of a box. Or the whole NC_BOX case could be solved with one line: `mcdis_box(0., 0., 0., geoparams.dx, geoparams.dy, geoparams.dz);` It looks better in my opinion but there might be a reason why it wasn't used in the first place. " __label__enhancement Créer l'affichage html pour l'affichages des livraisons par minute par postier __label__bug Update Install instructions for 2.6 users Setuptools stopped supporting python 2.6 in v37. Update install docs with a CentOS 6 section to tell people to: `pip install setuptools==36.8.0` before installing pyglidein. __label__enhancement Clear button to clear all input Reset all input widget values __label__enhancement Support non-good links "__label__bug [TW-261] Easy to create ""not deletable"" task _Jan Kunder on 2013-07-15T20:54:35Z says:_ $ task add 4tttt rec:monthly due:1/1/2020 Created task 19. $ task 19 delete Task 19 '4tttt' is not deletable. Deleted 0 tasks. Am I doing something wrong? ********** # Name Editable details # ----------------- ---------------------------------------------------- # ID: 19 # UUID: 91262a00-bdf3-4a2c-8ba5-1032c4875d73 # Status: Recurring # Mask: - # iMask: Project: Priority: # Separate the tags with spaces, like this: tag1 tag2 Tags: Description: 4tttt Created: 7/15/2013 20:49:14 Started: Ended: Scheduled: Due: 1/1/2020 00:00:00 Until: Recur: monthly Wait until: Parent: # Annotations look like this: -- and there can be any number of them. # The ' -- ' separator between the date and text field should not be removed. # A ""blank slot"" for adding an annotation follows for your convenience. Annotation: 7/15/2013 20:53:16 -- # Dependencies should be a comma-separated list of task IDs/UUIDs or ID ranges, with no spaces. Dependencies: # End" __label__question Objective c Use? How can i use in objective c? can you tell me? "__label__bug has_ip_downloaded_version column type unknow DLM_Logging->has_ip_downloaded_version SELECT COUNT(ID) FROM {$wpdb->download_log} WHERE type = 'download' Type column dos not exist Also, the comment says : Check if visitor has downloaded version in the past 24 hours But nothing seems to select date range in this request ?" "__label__bug testExpandGlobs and test_extract_tarball fails on mac I cloned wp-cli and ran phpunit on it. Here is its output - ``` PHPUnit 7.0.0 by Sebastian Bergmann and contributors. ......................................F........................ 63 / 243 ( 25%) ...................................................tar: Option --force-local is not supported Usage: List: tar -tf Extract: tar -xf Create: tar -cf [filenames...] Help: tar --help F.......Debug: This is a test message. (0s) .... 126 / 243 ( 51%) ..............................................................F 189 / 243 ( 77%) FFFFFFFF.............................................. 243 / 243 (100%) Time: 5.28 seconds, Memory: 16.00MB There were 11 failures: 1) BehatTagsTest::test_behat_tags_extension Failed asserting that two strings are identical. --- Expected +++ Actual @@ @@ -'--tags=~@github-api&&~@broken&&~@require-extension-imagick&&~@require-extension-intl' +'--tags=~@github-api&&~@broken&&~@require-extension-imagick' /Users/apple/code/test/wp-cli/tests/test-behat-tags.php:129 2) Extractor_Test::test_extract_tarball Failed asserting that 1 is identical to 0. /Users/apple/code/test/wp-cli/tests/test-extractor.php:117 3) UtilsTest::testExpandGlobs with data set #1 ('{foo,bar}.ab1', array('foo.ab1', 'bar.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 4) UtilsTest::testExpandGlobs with data set #2 ('{foo,baz}.a{b,c}1', array('foo.ab1', 'baz.ab1', 'baz.ac1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 5) UtilsTest::testExpandGlobs with data set #3 ('{foo,baz}.{ab,ac}1', array('foo.ab1', 'baz.ab1', 'baz.ac1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 6) UtilsTest::testExpandGlobs with data set #4 ('{foo,bar}.{ab1,efg1}', array('foo.ab1', 'foo.efg1', 'bar.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 7) UtilsTest::testExpandGlobs with data set #5 ('{foo,bar,baz}.{ab,ac,efg}1', array('foo.ab1', 'foo.efg1', 'bar.ab1', 'baz.ab1', 'baz.ac1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 8) UtilsTest::testExpandGlobs with data set #6 ('{foo,ba{r,z}}.ab1', array('foo.ab1', 'bar.ab1', 'baz.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 9) UtilsTest::testExpandGlobs with data set #7 ('{foo,ba{r,z}}.{ab1,efg1}', array('foo.ab1', 'foo.efg1', 'bar.ab1', 'baz.ab1')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 10) UtilsTest::testExpandGlobs with data set #8 ('{foo,bar}.{ab{1,2},efg1}', array('foo.ab1', 'foo.ab2', 'foo.efg1', 'bar.ab1', 'bar.ab2')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' + 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 11) UtilsTest::testExpandGlobs with data set #9 ('{foo,ba{r,z}}.{a{b,c}{1,2},efg{1,2}}', array('foo.ab1', 'foo.ab2', 'foo.efg1', 'foo.efg2', 'bar.ab1', 'bar.ab2', 'baz.ab1', 'baz.ac1', 'baz.efg2')) Failed asserting that two arrays are identical. --- Expected +++ Actual @@ @@ Array &0 ( - 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' - 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' - 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' - 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg2' - 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' - 5 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' - 6 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' - 7 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' - 8 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.efg2' + 0 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab1' + 1 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/bar.ab2' + 2 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ab1' + 3 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.ac1' + 4 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/baz.efg2' + 5 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab1' + 6 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.ab2' + 7 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg1' + 8 => '/Users/apple/code/test/wp-cli/tests/data/expand_globs/foo.efg2' ) /Users/apple/code/test/wp-cli/tests/test-utils.php:534 FAILURES! Tests: 243, Assertions: 695, Failures: 11. ``` The tar issue looks like gnu vs bsd tar issue. `test_behat_tags_extension` issue appears on linux as well." "__label__bug Navigating file explorer Quirks @bryphe given you're looking to get the file explorer into the next release wanted to give some feed back on issues I've noted (following on from the gitter conversation). As I mentioned with my own `init.vim` enabled I find that pressing `j` or `k` causes the cursor to occasionally jump over nodes in the tree. I've tried deactivating my config which actually results in an error which crashes oni. Will do some more digging and add a screen cast to illustrate the issue shortly." "__label__enhancement [TW-85] task ""properties"" or ""casual attributes"" _David Patrick on 2012-08-29T18:39:28Z says:_ Gently lifted from the orgmode idea-pile, where they think nothing of banging together on-the-spot data-sets, this feature-request is a parallel to the undefined fields of extra information and add-hoc attributes they call ""properties"". Orgmode folks might keep these in ""drawers""! kooks! ..but smart! The magic-key for orgmode properties is too simple for words; a properly placed ""key: value"" pair, and external scripts can find that ""field"" and use that string-type value for _anything_. Taskwarrior can do that trick _even better_ than orgmode, with annotations that start with [timestamp]<:> It's a ""casual attribute"" because you can casually collect data of any sort, just by tacking on % tw 142 mod annotate key: value which could be % tw 142 mod annotate goals: ~/doc/mygoals.txt it could be % tw 142 mod annotate miles: 72.5 it could be % tw 142 mod annotate contact: Brad Smith it could be _anything_ you get the idea, it can be defined-on-the-fly. and then the pattern of key: value is easy to search for. (that's how it starts) Now I'm not looking to replace or duplicate UDAs, but to take full advantage of annotations and to give users the ability to capture arbitrary data as needed, on-the-fly, without having to pre-define anything or worry about data-type (it's all strings). I can also see how once established, the convention will help a number of long-awaited features move forward, like task and project metadata, advanced planning techniques. smart goal-setting, rich-reporting enhancements etc. taskopen could be extended to include the form "".. annotate references: /home/mook/docs/refs.txt"" to have the same effect it does now, but with a semantic label. At the moment, this is just External Script candy and a suggested convention that we can all start using right away. I think introducing this feature in 3 phases is a good idea; h3. phase I - establish the convention The command-phrase "".. annotate key: value"" is added to the tests (works fine presently). We ask Johannes (nicely) to extend taskopen to handle the form ""property: fileref"", ignoring timestamps, if any. This gets established as ""best practice"" for external scripts and ancillary data. h3. phase II - use properties like regular attributes A new core sub-routine sweeps the data-set and indexes all properties:, and makes them as available as any other attribute, ATTMODS and all. h3. phase III - properties are used for taskwarrior key features With regular use of taskopen in the properties form, and interactivity triggered by *task ask* and ""property: ?"", properties can then be used to fully define milestones and goals and all other project metadata (that doesn't fit in existing fields or UDAs) and also as ""casual attributes"", as interactive %variables, for advanced GTD method, with advanced planning techniques. and for fabulously-rich reporting." "__label__enhancement fault tolerant end to end Right now, if any of the onion routers in a virtual circuit go down or fail to communicate then all the threads involved just raise exceptions. Onion nodes shall instead **shut down gracefully** when a virtual circuit is ""opened"" due to any failure of any of its nodes. ""Shut down gracefully"" means two things: 1. The routers shall not raise uncaught exceptions and shall propagate news of the circuit's failure to all participating nodes before leaving the circuit themselves. We would like the failure of any router in a virtual circuit to cause the circuit in question to ""kill itself"". 2. The originator should be able to recover from the circuit's ""death"" by re-sending the failed transmission over a new circuit established in recovering from the failure of the first one." "__label__bug Previous tasks are not correctly handled If in the previous task list an id refere to not tasks (typically due to an typing error), an exception is thrown and display. The issue is that the exception message is 'null'. It should be more explicite or the link to the previous task should be similar to the tag system." __label__bug In leave management employee leaves are not decreasing after approval the leave "__label__bug [1][HarukaMa] Added smartcoin feed producers removed from list on tab switch Hey, When you add accounts to the smartcoin feed producer list, but navigate to another tab before clicking 'update asset', the new accounts will be removed from the list. Just happened when I added 20 accounts, checked the other tabs then hit 'update asset' and realized that it hadn't updated the feed producer list. Best regards, CM." "__label__bug time printing error ""one minutes""" "__label__question Is Quorum a good tool for secure a constant flow of data? Greets, I am thinking about implementing a DLT for this scenario: I have multiple devices with not constant internet connection (from 50 to 200 devices aprox.) This devices get data constantly and then as soon as they are fed up, they send it to a No SQL server stored in the cloud. The objective is implement Quorum to make this data private and only visible for the sender and the receiver entities. The data is stored in JSON, so what would be uploaded to the blockchain? the file itself? (Huge amount of data) Or some kind of identificator for the file? Thank you very much, you really save my life and sorry for the novice question, I tried to contact Quorum support but got no response." "__label__bug Non-ASCII subtitles Hi, while trying to play a video this plugin fails with this error: ``` NOTICE: [Amazon VOD] Convert English [CC] Subtitle NOTICE: [Amazon VOD] Srtfile: /storage/.kodi/temp/English [CC].srt NOTICE: [Amazon VOD] getURL: https://___.dfxp NOTICE: [Amazon VOD] Convert Nederlands Subtitle NOTICE: [Amazon VOD] Srtfile: /storage/.kodi/temp/Nederlands.srt NOTICE: [Amazon VOD] getURL: https://___.dfxp NOTICE: [Amazon VOD] Convert Русский Subtitle NOTICE: [Amazon VOD] Srtfile: /storage/.kodi/temp/Русский.srt ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS! Error Type: Error Contents: 'ascii' codec can't encode characters in position 20-26: ordinal not in range(128) Traceback (most recent call last): File ""/storage/.kodi/addons/plugin.video.amazon-test/default.py"", line 3090, in PrimeVideo_Browse(None if 'path' not in args else args['path']) File ""/storage/.kodi/addons/plugin.video.amazon-test/default.py"", line 461, in PrimeVideo_Browse PlayVideo(node['metadata']['video'], node['metadata']['asin'], '', 0) File ""/storage/.kodi/addons/plugin.video.amazon-test/default.py"", line 1583, in PlayVideo playable = IStreamPlayback(asin, name, trailer, isAdult, extern) File ""/storage/.kodi/addons/plugin.video.amazon-test/default.py"", line 1707, in IStreamPlayback opt='&titleDecorationScheme=primary-content', dRes=dRes, useCookie=cookie), retmpd=True) File ""/storage/.kodi/addons/plugin.video.amazon-test/default.py"", line 1965, in getStreams subUrls = parseSubs(data) File ""/storage/.kodi/addons/plugin.video.amazon-test/default.py"", line 2016, in parseSubs with codecs.open(srtfile, 'w', encoding='utf-8') as srt: File ""/usr/lib/python2.7/codecs.py"", line 896, in open UnicodeEncodeError: 'ascii' codec can't encode characters in position 20-26: ordinal not in range(128) -->End of Python script error report<-- ``` (I've added a print of srtfile for clearness) The error seems to be related to the russian subtitles, as the srt filename contains non-ASCII characters: `/storage/.kodi/temp/Русский.srt`" __label__enhancement Implement MongoDB authentication "__label__enhancement Constraints{} and wordplay with namespaces ils sont malins chez symfony, ils font un alias de namespace pour que les méthode aient du sens lorsqu'on lis le code ``` use Symfony\Component\Validator\Constraints as Assert; ``` Dans leurs controleurs, au lieu d'avoir `Constraints::true($is_it) ?` qui ne veut pas dire grand chose, il peuvent écrire `Assert::true($is_it) ?` qui est sémantiquement parfait ! Tout en gardant une structure de code, qui a du sens lorsqu'il est ""statique"" non employé. Malin... Et d'ailleurs il nous faut cette classe, car j'ai du la ré-écrire partiellement pour BPA. " __label__enhancement rename _tpl to static "__label__bug [TW-1771] Error in circular dependency checking _Michael Meier on 2016-02-20T15:01:23Z says:_ Hello everyone, while writing up a report on the performance of the ""isDependencyCircular"" function, I found an error in the implementation, I believe. The std::stack in the function is used wrong. After adding all the dependencies of the current task, the stack's pop method is called. I think the idea here was to remove the task which was just checked from the head of the stack, but that is not what's happening. What is actually being removed with the ""pop"" call is the last element in the current task's dependency vector, which was the last element added to the stack. The stack being a LIFO queue, that will be the element removed by the pop call at the end of the while loop. Allow me the following example with an adjacency list like this: a -> b a -> c and a new Task ""N"" depending on ""a"" Then, the stack would look like this during the execution of ""isDependencyCircular"": # s:[N] # s: [N,a] (add dependencies of N) # s: [N] (pop at the end of the while loop removes last element added) # s: [N,a] (N becomes current task again, dependency a is added again) # ... and so forth. And now I'm surprised. What exactly is happening here? Shouldn't the function into an infinite loop? Is there a trick in there my relatively lackluster C++ skills are not seeing? I hope have not just wasted your time. Greetings, Michael " "__label__bug Issues around hashFirst() hashFirst is a public API method that is needed for handling file uploads. Thus it should be somewhat ""hard"" and not rely on assumptions about its parameter, i.e., hashFirst should not assert when presented with a sd<0 or a sd >= symMax, instead it should return 0. Most places inside goAhead test this assumption before calling hashFirst, but - cgiHandler simply jumps into hashFirst without testing the sd before, thus hashFirst or its caller might crash - route.c::websCan tests abilities to be >= 0, but asserts in case abilities==0, which is probably a bug of its own, but demonstrates, that hashFirst should not require the user to have internal knowledge about the validity of hash values. " __label__enhancement Change Documentation generating - Ignore `[bugfix]` specs. - Move complex information to `DETAILS` const. "__label__enhancement Create a SAX container on ioFog There is a new branch in tempus-iofog called sax, it contains a sax algorithm written in Go. It needs to be wrapped with the ioFog sdk. The test will be to simulate a high frequency stream of data. The data should be read in 3 second batches (with 200hz data) for 1 tag, and every 3 seconds a character representation of this stream should be generated and transmitted to thingsboard." "__label__bug Doubled top level dir when extracting release zip on Windows As reported to me on Windows 7: `The first thing I noticed is that when I do an Extract All, I get a double scancode directory. That is, it is extracted to scancode-toolkit-1.6.0/scancode-toolkit-1.6.0/` For instance: `C:\Users\pombredanne\Downloads\scancode-toolkit-1.6.0\scancode-toolkit-1.6.0` " "__label__bug Isotope detection isn't ""turned on"" until peak detection is run It seems that automatic detection of isotopes isn't enabled until the user has run peak detection with ""report isotopic peaks"". It would be very helpful if there was a way to enable isotopic peak detection (populating the isotopes widget) without first having to run peak detection. I believe it's simply a matter of setting the `pullIsotopesFlag` and thus `ShowIsotopes`." "__label__enhancement [TW-1091] Autogenerated .taskrc should reference man taskrc _Cory Donnelly on 2009-12-05T11:05:26Z says:_ I've been using various flavours of linux for years and have a mac now, but it never occurred to me to check to see if a man page had been created for .taskrc (or task itself) as Paul suggested in Issue #335 -- can I respectfully propose a minor change to the automatically-created .taskrc files? Trivial patch attached -- please feel free to tweak/disregard." __label__bug random crash game DynamicSurroundings-1.12.2-3.4.9.2 1.12.2-forge1.12.2-14.23.1.2607 [fml-client.zip](https://github.com/OreCruncher/DynamicSurroundings/files/1700799/fml-client.zip) I can not describe the game flies out in rare cases "__label__enhancement Ability to show r2 ""system"" comments in the graph Ability to show r2 ""system"" comments in the graph: ![image](https://user-images.githubusercontent.com/1408600/33530216-cbc8fa6e-d87c-11e7-9e9c-a2786d2e6e50.png) vs ![image](https://user-images.githubusercontent.com/1408600/33530218-d1b54e0a-d87c-11e7-87f4-a11ec173b00c.png) " "__label__enhancement Apphub Related function add 1、Apphub添加log打点,,便于统计完整性:每隔5分钟输出一个点,这样日志归集到es后,通过查询可以分析出一天输出了多少了个点,以此来衡量完整性 2、添加Apphub数据透传,提供此功能,并且对数据经行AES CBC模式加密。当app应用菜单是跳转菜单时(非apphub自己的应用),会将加密后的码追加到url上,便于跳转的应用可选获取使用(使用需要对应的解密)。 3、Apphub节点操作限制时间调整:1分钟限制下降为3秒" "__label__enhancement [SourceTree] The directory root should be saved We should save the root in prefs so that once the user sets it, it will be saved when they close the debugger and re-open it." "__label__bug Error: No Project. in 'Object.ThrowNoProject' during 'completions' This issue comes from crash dumps in telemetry. We've tried to de-duplicate issues on a best-effort basis, comparing the sequence of methods called and the command requested while ignoring line numbers. **TypeScript Version Prefix**: 2.7.1 **VSCode Version** 1.20.0-insider **command requested**: completions **hitting sessions**: 870 **proportion of all sessions**: 0.003247807729782397 **stack** ``` Error: No Project. at Object.ThrowNoProject (tsserver.js:84217:23) at ProjectService.getDefaultProjectForFile (tsserver.js:87395:46) at IOSession.Session.getFileAndProjectWorker (tsserver.js:89772:87) at IOSession.Session.getFileAndProject (tsserver.js:89757:29) at IOSession.Session.getCompletions (tsserver.js:89913:31) at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (tsserver.js:89017:61) at unknown (tsserver.js:90393:88) at IOSession.Session.executeWithRequestId (tsserver.js:90384:28) at IOSession.Session.executeCommand (tsserver.js:90393:33) at IOSession.Session.onMessage (tsserver.js:90413:35) at Interface. (tsserver.js:91614:27) at emitOne (events.js:96:13) at Interface.emit (events.js:191:7) at Interface._onLine (readline.js:241:10) at Interface._normalWrite (readline.js:384:12) at Socket.ondata (readline.js:101:10) at emitOne (events.js:96:13) at Socket.emit (events.js:191:7) at readableAddChunk (_stream_readable.js:178:18) at Socket.Readable.push (_stream_readable.js:136:10) at Pipe.onread (net.js:560:20) ```" __label__enhancement Implement basic loops: Map and Filter - Map (`M`) should pop a list from the stack and iterate over it with a **one-argument function**. Intended usage: `M...}`. - Filter (`F`) should pop a list from the stack and filter-keep the items which yield truthy results when a **one-argument function** is applied to them. Intended usage `F...{`. Such loops should not be nestable. "__label__bug Base Metals 1.12.1 #102 has failed Build 'Base Metals 1.12.1' is failing! Last 50 lines of build output: ``` [...truncated 24.49 KB...] :sourceJar :assemble :check UP-TO-DATE :signJar :build :generatePomFileForMavenJavaPublication :publishMavenJavaPublicationToMavenRepository Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102.jar Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102.jar.sha1 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102.jar.md5 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102.pom Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102.pom.sha1 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102.pom.md5 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-sources.jar Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-sources.jar.sha1 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-sources.jar.md5 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-deobf.jar Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-deobf.jar.sha1 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-deobf.jar.md5 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-javadoc.jar Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-javadoc.jar.sha1 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/1.12-2.5.0-beta3.102/BaseMetals-1.12-2.5.0-beta3.102-javadoc.jar.md5 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/maven-metadata.xml Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/maven-metadata.xml.sha1 Upload sftp://localhost:22/var/www/maven.mcmoddev.com/com/mcmoddev/BaseMetals/maven-metadata.xml.md5 :publish :sonarqube Property 'sonar.php.file.suffixes' is not declared as multi-values/property set but was read using 'getStringArray' method. The SonarQube plugin declaring this property should be updated. Classes not found during the analysis : [org.apiguardian.api.API$Status] :sonarqube FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':sonarqube'. > org.sonar.api.utils.MessageException (no error message) * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. * Get more help at https://help.gradle.org BUILD FAILED in 3m 25s 24 actionable tasks: 23 executed, 1 up-to-date Build step 'Invoke Gradle script' changed build result to FAILURE Build step 'Invoke Gradle script' marked build as failure Archiving artifacts [Set GitHub commit status (universal)] FAILURE on repos [GHRepository@2d047329[description=Base Metals Mod,homepage=http://minecraft.curseforge.com/projects/base-metals,name=BaseMetals,license=,fork=false,size=24453,milestones={},language=Java,commits={},source=,parent=,responseHeaderFields={null=[HTTP/1.1 200 OK], Access-Control-Allow-Origin=[*], Access-Control-Expose-Headers=[ETag, Link, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval], Cache-Control=[private, max-age=60, s-maxage=60], Content-Encoding=[gzip], Content-Security-Policy=[default-src 'none'], Content-Type=[application/octet-stream], Date=[Tue, 09 Jan 2018 01:03:38 GMT], ETag=[""68b79b418c1a8a11b21624b1135eaea0""], Last-Modified=[Sun, 07 Jan 2018 00:53:16 GMT], OkHttp-Received-Millis=[1515459818810], OkHttp-Response-Source=[CONDITIONAL_CACHE 304], OkHttp-Selected-Protocol=[http/1.1], OkHttp-Sent-Millis=[1515459818522], Server=[GitHub.com], Status=[304 Not Modified], Strict-Transport-Security=[max-age=31536000; includeSubdomains; preload], Transfer-Encoding=[chunked], Vary=[Accept, Authorization, Cookie, X-GitHub-OTP], X-Accepted-OAuth-Scopes=[repo], X-Content-Type-Options=[nosniff], X-Frame-Options=[deny], X-GitHub-Media-Type=[github.v3; format=json], X-GitHub-Request-Id=[E2EB:1C446:18D42DC:32EB759:5A5414EA], X-OAuth-Scopes=[admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, gist, notifications, repo, user], X-RateLimit-Limit=[5000], X-RateLimit-Remaining=[4916], X-RateLimit-Reset=[1515461160], X-Runtime-rack=[0.055137], X-XSS-Protection=[1; mode=block]},url=https://api.github.com/repos/MinecraftModDevelopmentMods/BaseMetals,id=66398297]] (sha:5613ba8) with context:Base Metals 1.12.1 Setting commit status on GitHub for https://github.com/MinecraftModDevelopmentMods/BaseMetals/commit/5613ba8aa0ae15a1577c8032b5db0c2787ee0cd3 ``` Changes since last successful build: No changes [View full output](https://ci.mcmoddev.com/job/Base%20Metals%201.12.1/102/)" __label__bug Revisar exportación de analytics - [x] Hoy se muestran 11k de consultas cuando parecen ser casi 20k. - [x] Poder filtrar por fecha - [ ] Sumar más columnas de información sin perjudicar la performance (pasan el JSON para revisar cuáles son los campos útiles) "__label__bug 3dNwarpAdjust There's a theoretical bug/imperfection in how anats_to_common works. During the non-linear stages, it is possible for systematic biases to accumulate in the non-linear warps. These can be removed by calculating the mean warp (which would be zero if there were no biases, but there usually are), inverting it, applying the inverted warp to the original warps then applying the adjusted warps to the input images to produce an unbiased mean. This is best done using 3dNwarpAdjust, which was written for this exact purpose. @salma1601 can you add a 3dNwarpAdjust interface to nipype? It only has three options. I will then modify anats_to_common" "__label__enhancement [TW-403] Comply XDG Base Directory Specification _Akiva Levy on 2013-07-19T01:30:05Z says:_ As per Feature #619 > It would be nice if Taskwarrior comply this specification: > http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html > > then ~/.task/ appears to be ~/.local/share/task/ or ~/.cache/task/ > ~/.taskrc can be in ~/.config/task/config > and so on The reason this was dismissed it dismal and, to be frank, rather shameful. It's a standard for a reason. And while slow to catch on, it has been widely adopted. What makes the reason it was turned down worse is just how simple a fix this feature would have been for all those that would prefer it." "__label__question Negative number in argument Hi, is there a way how to pass a negative number as command-line argument? For example: > vips insert test.jpg x.jpg test_x.jpg -10 0 gives error ""Unknown option -10"" on Windows platform. Quotes seems not to help:>vips insert test.jpg x.jpg test_x.jpg ""-10.0"" ""0"" Unknown option -10.0 Neither this one: >vips insert test.jpg x.jpg test_x.jpg '-10.0' '0' insert: ''-10.0'' is not an integer Any idea? Platform: windows 7 version: 8.7 Regards, Petr" "__label__enhancement UI: Modes and Walk Distance 1) We need to make BIKE and WALK mutually exclusive modes (e.g., the OTP routing engine will find walk legs on a BICYCLE,TRANSIT trip, when needed, so no need to have WALK as an added mode). 2) The form has to be wicked smart when switching between bike and walk modes, especially with the walk/bike distance. Right now, the MOD Map is using 1/4 mile regardless of WALK or BICYCLE or WALK,BICYCLE modes. Also, the name of the form should change from 'MAXIMUM WALK' to 'MAXIMUM BIKE'. 3) For example, take a look at the ride.trimet.org form: https://ride.trimet.org/?mode=BICYCLE,TRANSIT ![bike](https://user-images.githubusercontent.com/64323/34858377-e452c9ba-f704-11e7-8c89-151f911f6703.png) vs. https://ride.trimet.org ![walk](https://user-images.githubusercontent.com/64323/34858369-d6c4aaac-f704-11e7-8e02-2d01f36df0d7.png) You'll see that 'Maximum walk' goes from 3 miles to 3/4 mile depending on BIKE vs WALK modes. Further, the form name 'Maximum walk' switches to 'Maximum bike'. One last subtly is that if the customer changes his max walk distance, that value is remembered when switching back and forth between walk and bike modes." __label__bug Fix link and parse result con le nuove API __label__bug dsdvs sds __label__enhancement Change filter highlight color that is easier to see [SP - 1] [Risk - Low] [Priority - Low] "__label__enhancement Add tests for cache hook, using service calls. " "__label__enhancement How to avoid very small words inside big letters Hi Tim! May I know if there is any way we can put very small words outside big letters when we have the biggest at the center? I have attached a sample. 'Fussy' and 'Open' is inside O, 'Fin Re' within 'e' and 'Big' that is within 'v' - all in the word innovative. I know we can use 'gridsize', but i would like to just retain the spacing of the words outside 'innovative'. Thank you! ![image](https://user-images.githubusercontent.com/22494680/31492182-9378a3d6-af7c-11e7-9c49-777380ce2e30.png) " __label__enhancement Ajouter un trigger Codeship pour le déploiement Surveiller le répertoire pour livrer automatiquement l'application sur Heroku __label__enhancement Automatic validation Integration with class-validator with options and ability to disable feature. "__label__enhancement change how observer mode works Right now, observers use a player slot. For example, if you have a 3 v 3 game on six player map, there is not 7th slot for an observer unless the map is changed to a 7 or 8 player map. On a 8 player map with 8 people playing, there would be no room for an observer. There should be a way for observers to join without using a player slot." "__label__enhancement Conditionally transform iterator|type[] to iterator PHPStorm supports the bad and not good annotation `iterator|type[]`, and numerous developers find it in their code as a result. Psalm should have a `psalm.xml` flag, off by default, that allows this – `allowPhpStormGenerics`." "__label__bug cacheStore is never used in bridge `bridge/cache.ts` imports the config directly, which forces it to use the default cache store. " __label__bug Freeze time resets upon briefing stage end https://github.com/ARCOMM/ARCORE/blob/master/addons/common/XEH_postInit.sqf#L30 "__label__enhancement [Feature Request] Remove Trade Evolution Option Similar to how the universal pokemon randomizer can remove trade evolutions and replace them with another method e.g leveling up, is it possible to do that with PK3DS?" "__label__bug Cancellation of docker_run jobs does not seem to work I canceled a batch of docker_run.delay jobs from the Girder jobs UI. The ones that were running just kept running, the ones that were not yet started entered the ""Canceling"" state but never got out of it. ![screen shot 2018-01-22 at 11 54 11 am](https://user-images.githubusercontent.com/555959/35233190-61dc4988-ff6b-11e7-9f29-d06718fa7bbd.png) " "__label__bug Re opening Data Import does not move pass in inprogress #12305 as its not resolved Still unable to import anything with new data importer. Ran bench update this morning and still unable to import items, warehouses, etc. Gui does not show any errors nor do i see any errors in the gui, or the logs. ![logs](https://user-images.githubusercontent.com/19347811/34536651-b0687d6a-f07a-11e7-82c3-6eb4c069540d.png) Source: https://github.com/frappe Installed Apps ERPNext: v10.0.5 Frappe Framework: v10.0.6 ![same-import-prohlem](https://user-images.githubusercontent.com/19347811/34536446-0080a7d8-f07a-11e7-94d5-7553f78b0b49.png) Even tried exporting and reimporting and that does not work." "__label__question SVG With Glide SvgSoftwareLayerSetter need to be added separately? Hi, I am trying to load an SVG from web using Glide (Kotlin), below is the gradle file dependencies { implementation 'com.github.bumptech.glide:glide:4.5.0' kapt 'com.github.bumptech.glide:compiler:4.5.0' } I am using Generated API, I am able to get GlideApp but I am not sure how to get SvgSoftwareLayerSetter? do i need import those java files separately? wont things work out of the box with GlideApp? GlideApp.with(this) .`as`(PictureDrawable::class.java) .placeholder(R.drawable.image_loading) .error(R.drawable.image_error) .transition(withCrossFade()) .listener(SvgSoftwareLayerSetter()) <---- Getting unresolved symbol error here " __label__enhancement Add Rss for Better Content Delivery Use Rss feed to send new content to Mailchimp for bulk mailing subscribers "__label__bug Cannot analyze tags from ECR repositories in another account using IAM_AUTO mode When the engine is configured to use IAM_AUTO mode (allow_awsecr_iam_auto = True in config.yaml) and a registry is added with 'awsauto' as username, if the registry is in another account from the account the role exists in the token is not configured correctly because the registryID (account ID of the registry) is not set in the get_authorization_token() call to get credentials. To reproduce: * Grant access to the engine account in the ECR repository policy in AWS, read-only. * Run anchore-engine in aws iam auto mode and add a registry in a different account from the one the engine is running in. * Try to analyze a tag in that repository. Will fail with auth issue. To fix: add _registryIds=[aid]_ in the params the get_authorization_token() call for https://github.com/anchore/anchore-engine/blob/master/anchore_engine/auth/aws_ecr.py#L26" __label__enhancement Plug-in version information on system page The System tab already provides a list of plug-ins. This list should be exteded by the plugin-versions __label__question Incorporating new observation data Does this actually train the new data to the model or is it only passed to reference ? __label__enhancement Skip checking announcement for courseId 00000000-0000-0000-0000-000000000000 "__label__bug Mutex -L and -v Seems like `-L` and `-v` should be mutually exclusive. `-l -v` is fine, and `-L` is fine, but together they don't make sense." "__label__bug Restriction ends before time is up *Sent by [**galtish@gmail.com**](mailto:galtish@gmail.com)* Description: --- Seems like the app pretty frequently is ending the restriction period well before the time is up. I keep selecting 1 hour, and initially it restricts the apps I have blocked, but then a few (15-20?) mins later I'm able to access apps again? No crash message. Device info: ---
App version4.2r
App version code13
Android build versionG950USQU2ZRAE
Android release version8.0.0
Android SDK version26
Android build IDR16NW.G950USQU2ZRAE
Device brandsamsung
Device manufacturersamsung
Device namedreamqltesq
Device modelSM-G950U
Device product namedreamqltesq
Device hardware nameqcom
ABIs[arm64-v8a, armeabi-v7a, armeabi]
ABIs (32bit)[armeabi-v7a, armeabi]
ABIs (64bit)[arm64-v8a]
Extra info: ---
Pro Version?true
" "__label__bug [production] # (Errno::ENOENT) ""No such file or directory @ rb_file_s_lstat - /tmp/metaflop/-imz_f-RApWRZGGtVeMOKw/bespoke/font.eot""
ExceptionNo such file or directory @ rb_file_s_lstat - /tmp/metaflop/-imz_f-RApWRZGGtVeMOKw/bespoke/font.eot
Last OccurrenceMarch 30, 2017 22:57:15 +0200
Count1
## Stack Trace
[bundle].../gems/rubyzip-1.2.1/lib/zip/entry.rb:378:in `lstat' [bundle].../gems/rubyzip-1.2.1/lib/zip/entry.rb:378:in `file_stat' [bundle].../gems/rubyzip-1.2.1/lib/zip/entry.rb:512:in `gather_fileinfo_from_srcpath' [bundle].../gems/rubyzip-1.2.1/lib/zip/file.rb:272:in `add' [app].../app/lib/web_font.rb:47:in `block in add_font_files' [app].../app/lib/web_font.rb:46:in `map' [app].../app/lib/web_font.rb:46:in `add_font_files' [app].../app/lib/web_font.rb:35:in `block in zip' [bundle].../gems/rubyzip-1.2.1/lib/zip/file.rb:101:in `open' [app].../app/lib/web_font.rb:34:in `zip' [app].../app/lib/font_generator.rb:54:in `web' [app].../app/lib/metaflop.rb:39:in `font_web' [app].../app/routes/modulator.rb:66:in `call' [app].../app/routes/modulator.rb:66:in `block (2 levels) in ' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1610:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1610:in `block in compile!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:975:in `block (3 levels) in route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:994:in `route_eval' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:975:in `block (2 levels) in route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1015:in `block in process_route' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1013:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1013:in `process_route' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:973:in `block in route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:972:in `each' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:972:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1085:in `block in dispatch!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `block in invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1082:in `dispatch!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:907:in `block in call!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `block in invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:907:in `call!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:895:in `call' [bundle].../gems/party_foul-1.5.5/lib/party_foul/middleware.rb:8:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.5/lib/rack/session/abstract/id.rb:225:in `context' [bundle].../gems/rack-1.6.5/lib/rack/session/abstract/id.rb:220:in `call' [bundle].../gems/rack-1.6.5/lib/rack/logger.rb:15:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:212:in `call' [bundle].../gems/rack-1.6.5/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:182:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:2013:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:954:in `forward' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1028:in `route_missing' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:989:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:985:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:985:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1085:in `block in dispatch!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `block in invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1082:in `dispatch!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:907:in `block in call!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `block in invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:907:in `call!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:895:in `call' [bundle].../gems/party_foul-1.5.5/lib/party_foul/middleware.rb:8:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.5/lib/rack/session/abstract/id.rb:225:in `context' [bundle].../gems/rack-1.6.5/lib/rack/session/abstract/id.rb:220:in `call' [bundle].../gems/rack-1.6.5/lib/rack/logger.rb:15:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:212:in `call' [bundle].../gems/rack-1.6.5/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:182:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:2013:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:954:in `forward' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1028:in `route_missing' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:989:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:985:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:985:in `route!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1085:in `block in dispatch!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `block in invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1082:in `dispatch!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:907:in `block in call!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `block in invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `catch' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1067:in `invoke' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:907:in `call!' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:895:in `call' [bundle].../gems/party_foul-1.5.5/lib/party_foul/middleware.rb:8:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.5/lib/rack/session/abstract/id.rb:225:in `context' [bundle].../gems/rack-1.6.5/lib/rack/session/abstract/id.rb:220:in `call' [bundle].../gems/rack-1.6.5/lib/rack/logger.rb:15:in `call' [bundle].../gems/rack-1.6.5/lib/rack/commonlogger.rb:33:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:219:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:212:in `call' [bundle].../gems/rack-1.6.5/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:182:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:2013:in `call' [bundle].../gems/rack-1.6.5/lib/rack/deflater.rb:35:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call' [bundle].../gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call' [bundle].../gems/rack-1.6.5/lib/rack/nulllogger.rb:9:in `call' [bundle].../gems/rack-1.6.5/lib/rack/head.rb:13:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:182:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:2013:in `call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1487:in `block in call' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1787:in `synchronize' [bundle].../gems/sinatra-1.4.8/lib/sinatra/base.rb:1487:in `call' [bundle].../gems/unicorn-5.2.0/lib/unicorn/http_server.rb:562:in `process_client' [bundle].../gems/unicorn-5.2.0/lib/unicorn/http_server.rb:658:in `worker_loop' [bundle].../gems/unicorn-5.2.0/lib/unicorn/http_server.rb:508:in `spawn_missing_workers' [bundle].../gems/unicorn-5.2.0/lib/unicorn/http_server.rb:132:in `start' [bundle].../gems/unicorn-5.2.0/bin/unicorn:126:in `' [bundle].../bin/unicorn:23:in `load' [bundle].../bin/unicorn:23:in `' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/cli/exec.rb:74:in `load' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/cli/exec.rb:74:in `kernel_load' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/cli/exec.rb:27:in `run' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/cli.rb:332:in `exec' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/cli.rb:20:in `dispatch' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/cli.rb:11:in `start' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/exe/bundle:34:in `block in ' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/lib/bundler/friendly_errors.rb:100:in `with_friendly_errors' /home/app/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/bundler-1.13.1/exe/bundle:26:in `' /home/app/.rbenv/versions/2.3.1/bin/bundle:23:in `load' /home/app/.rbenv/versions/2.3.1/bin/bundle:23:in `
'
Fingerprint: `dd91a98a4efc69a6147f537a9c3b7815c7079657` " "__label__question Hook civicrm_links declared twice The hook `sepa_civicrm_links` is declared twice, with different definitions. This prevents installing the extension from the master branch." "__label__bug Some simple_mobs attack twice Thanks to @ShadowDeath6 for bringing this one to my attention. ### Expected Behaviour Simple mobs attack once. ### Actual Behaviour Some simple mobs (bears/carps/fearless/statues) attack twice per click. ### Steps to reproduce the problem 1. Spawn a simple_mob (bear/fearless/statue/etc) 2. Click on human being 3. Enjoy free double damage Some simple_mobs do, indeed, attack only once (like constructs, slimes). " "__label__enhancement Request: Indicate if range is set in a multiplayer game Currently the only person that knows whether a game with range is set is the game host. This can lead to frustrating situations where the host might unwittingly have range set to 1 and nobody realizing until they want to interact with the opposite side player. There could be some kind of a visual cue, like a person's cards, avatar and stats will have appear darkened and shadowy as long as he's out of range, or there could be a descriptor at the start about what range is set, or perhaps both." "__label__bug notebook visualisation does not run due to wrong dimensionality of attention_weights Hi all, I am playing with the visualisation notebook and after some work, i manage to get everything apart from the last cell running. I find that enc_attn and dec_attn has different shape and therefore in the last cell, during get_attention, they wont concat. It would be great if somebody could take a look and see if i am missing something. I have attached the visualisation code here. [TransformerVisualization.log](https://github.com/tensorflow/tensor2tensor/files/1599469/TransformerVisualization.log) which is basically the IPYNB file with the ending changed to log. (since github does not support ipynb upload) It recorded also the output at runtime and the stack trace as well. Thank you very much! " __label__enhancement Upgrade language detection library Maybe: https://github.com/Mimino666/langdetect __label__enhancement All level 1 drivers should change name to vscpl1drv_xxx __label__bug Filters and layers are not saved in 'share case' and 'share link' @yairtawil @shaharido1 as we spoke earlier. the filters are more important than the the layers __label__bug Credentials Provide a way to specify credentials for databases which access is restricted to given users. See error example below: ```` Connection to influx:8086 established Getting list of databases Backup metadata into /backup/20180205-142937 !! Cannot list databases: ERR: unable to parse authentication credentials ```` __label__enhancement Different contents within video-page tab page: https://www.nexusmods.com/skyrim/mods/87248/?tab=7&navtag=https%3A%2F%2Fwww.nexusmods.com%2Fskyrim%2Fajax%2Fmodvideo%2F%3Fvtype%3D1%26id%3D87248&pUp=1 contents are: ....TITLE with link upload date [video] UNENDORSE [button] ...comments https://rd.nexusmods.com/skyrim/mods/87248?tab=videos&BH=0 contents are: [video] __label__question Bootstrap 4 compatibility. Do you plan on releasing a dashboard for bootstrap 4 and if so do have any ETA? You do great work and I would love to use but bootstrap 4 offers a lot of advantages and i do not want to have to upgrade later. "__label__bug Replaces placeholders without {} in name Here is the placeholder {game} -> None and the title ""Minigames"" ![image](https://user-images.githubusercontent.com/15892014/35776174-07c6b352-0998-11e8-8feb-ed61a1cb7fa2.png) " "__label__bug Stasis bullet is colliding with things it shouldn't be The Stasis Bullet currently will sometimes collide with the player upon being instantiated, and will thus expand on top of the player. Additionally, the stasis bullet also collides with other stasis fields.****" __label__enhancement Add -y flag to all apt-get "__label__bug Fix synthesis solutions The solutions produced by the ``getSynthSolutions`` module in ``ce_guided_conjecture`` are not robust to the case in which the synthesis conjecture contains large constants. These are added to the grammar to improve performance, but when the solution is converted back from the deep embedding the datatype representation of these is not being converted to their builtin counterparts. This is the reason currently two regressions in the SyGuS regression set regress0 have to be annotated with ``--no-check-synth-sol`` so that their solutions are not checked. This issue does not seem to affect the actually printed solutions. " __label__enhancement Create script for testing architecture __label__enhancement create landing page on GitHub.io "__label__enhancement Integration eines Wassersensors # Funktionswunsch Es wird die Integration eines Wassersensors gewünscht, um Überschwemmungen, defekte Wasserzuleitungen usw. erkennen zu können. ## Vorgehen 1. Passenden Rauchmelder eruieren, der über den Pi gesteuert werden kann. 2. Evaluierung einer Lösung mit Prüfung, ob Komponetnen zu geringen Kosten beschafft werden können. 3. Prototypenschaltung erstellen und nötigen Programmcode schreiben. ## Risiken 1. Kein passender Sensor verfügbar / fehlendes Wissen, um Sensor anzubinden 2. Sensor zu teuer 3. Sensor nicht wiederverwendbar; dadurch wird ein Testszenario erschwert ## Zu Testen Es ist zu evaluieren, ob evlt. schon der SHT21 zu diesen Zwecken taugt. In jedem Fall sollte aber nach einem besser geeigneten Sensor geschaut werden. Da eine integrierter Temperatursensor für diesen Einsatzzweck nicht benötigt wird. " __label__enhancement Remove plugin warning when not needed When a plugin doesn't override a core Wheels method I don't think we need to display a warning message that the plugin doesn't support the current Wheels version. "__label__bug Fix typo on upgrade warning ""Cannot Upgrade with Existing Functions Upgrating the runtime version is also coupled with upgrades to languages and binding dependecies that may introduce breaking changes. Please create a blank function app to upgrade major versions of the runtime."" Need to correct the spelling of ""Upgrating"" and ""dependecies"" per https://github.com/Azure/Azure-Functions/issues/640 comment" "__label__enhancement Генерация случайного числа Добавить возможность генерации случайного числа (0-9) по вставке какого-либо спец-шаблона. Например, `%rand%`" "__label__question It stops before entering a duel, tmp\\ocr.txt missing? here the scan ![immagine](https://user-images.githubusercontent.com/35998149/35642312-0da6eb2a-06c3-11e8-9117-070d8434d6fe.jpg) " "__label__enhancement Save deletion and advanced merging Currently, players are required to manually delete saves, and there is no option for merging data from previous versions. Using overrides, add an option to the settings menu to let players delete their save and start over, and an option to import DDLC data. Add an option to import_ddlc for developers to let players merge data with DDLC saves. Some of this functionality is already included into Monika After Story." "__label__bug fluid container and navbar-right behaviour ### Description Navbar-right DIV does not return to its original position when container is returned to smaller size after having been expanded to full width by pressing the fluid container button. ### Steps to Reproduce 1. Press fluid container button to expand to full screen view 2. Press fluid container button again to return to standard view 3. Reloading the page returns the navbar-right div to its original position **Expected behavior:** I expected the navbar-right div to remain in the same position relative to the navbar **Actual behavior:** the navbar-right div sticks partly out of the navbar ### Versions * Bootstrap3 Template: 2016-12-12 * DokuWiki: 2017-02-19 ""Frusterick Manners"" * Currently installed plugins (I have not yet had time to test this in a bare minimum install): * [https://www.dokuwiki.org/plugin:advanced] * [https://www.dokuwiki.org/plugin:bootswrapper] * [https://www.dokuwiki.org/plugin:include] * [https://www.dokuwiki.org/plugin:move] * [https://www.dokuwiki.org/plugin:passpolicy] * [http://www.dokuwiki.org/plugin:phpwikify] * [https://www.dokuwiki.org/plugin:securelogin] * [https://www.dokuwiki.org/plugin:simplenavi] * [https://www.dokuwiki.org/plugin:tablelayout] * [https://www.dokuwiki.org/plugin:tplmod] * [https://www.dokuwiki.org/plugin:translation] * [https://www.dokuwiki.org/plugin:wrap] * Tested in the following browsers: * Firefox 58.0.1 (32-bit) (windows 7) * Google Chrome 63.0.3239.132 (Official Build) (32-bit) (windows 7) * Firefox 57.0.4 (64-bit) (Arch Linux) * Firefox 58.0.1-1 (64-bit) (Arch Linux) * Chromium 63.0.3239.132 (Developer Build) (64 bit) (Arch Linux) * Chromium 64.0.3282.119-1 (Developer Build) (64 bit) (Arch Linux) ### Screenshots or Logs Original condensed situation and expanded situation ![fluid1](https://user-images.githubusercontent.com/35794614/35614085-2fdfdfbc-066e-11e8-910e-b7c42851e983.png) situation after returning to condensed (standard) situation ![fluid2](https://user-images.githubusercontent.com/35794614/35614087-32bc9130-066e-11e8-9a58-59832a93431b.png) ### Sample Page This is a temporary test location [http://www.won-nl.org/wontest/public/nl/start]" "__label__enhancement Staff Should Have Permission To Edit Live Tournaments Once a tournament has teams registered for it, the 'manage' settings are no longer available, which is normal for regular users so they don't change things after making promises. However in the event that users wish to make emergency changes or fix grammatical errors, we should provide the staff with permission to edit tournaments that have already begun to accept team registrations." "__label__enhancement Substituir Background Novo bckg = ""nextqs-bkg.jpg""" "__label__enhancement Add dependency validation rule Add dependency logic as a validation rule, e.g. Make field rules depend from other field value. Example: if selected country is Italy, use a validation specific validation rule for phone number, if country is England, use another rule." "__label__enhancement Add instantclient-precomp The Oracle Pro*C precompiler is [linked][2] from e.g. the main Linux [download page][1]. Currently, it's not available via this odl utility. [1]: http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html [2]: http://www.oracle.com/technetwork/topics/precomp-112010-084940.html" "__label__bug login with facebook account does not work When a new user is using the app, I can't login in the facebook account on the main page. So set this up so the user is able to log in with the facebook account. " __label__enhancement ユーザ認証 ログイン、ドメイン作成者・更新者の記録 __label__bug Editor camera file causes conflicts "__label__question SSH Key生成后与Github不能建立连接 我的系统、版本等环境配置是:macOS Sierra 10.12. 问题描述: 步骤一:SSH Key生成: _**The following SSH key was added to the Jessica8729/ssh repository by Jessica8729: Key 64:6a:bb:b5:06:d6:dc:39:52:6d:63:2d:e2:c7:82:1b**_ 步骤二:与github建立连接却不允许,如下: **JessicadeMacBook:temp jessicaliu$ cd ~/.ssh JessicadeMacBook:.ssh jessicaliu$ ssh -T git@github.com Permission denied (publickey).** 问题:是key的公有私有设置错了吗? 解决方案:查Github help,提示,如果是macOS Sierra 10.12.2 or later, 需要modify ~/.ssh/config file to automatically load keys into the ssh-agent. 但是,这一步卡住,不知如何改了? 输入Host *,结果如下: **JessicadeMacBook:.ssh jessicaliu$ Host * known_hosts.DHCP has address 202.98.24.125 known_hosts.DHCP has address 202.98.24.125 Host known_hosts.DHCP not found: 3(NXDOMAIN) Host known_hosts.DHCP not found: 3(NXDOMAIN)** 也不是手册的提示结果。 请教了。 谢谢!" __label__bug Endpoint status doesn't update if you refresh the endpoints page. The pagination observable is not emitting changes made to the entities and is only emitting if the pagination information is updated. "__label__bug Editor insertion bug We have discovered an issue in the Editor around insertion of text using a custom button - it can be seen at http://dojo.telerik.com/EZijI If you highlight text that is contained within a `` tag, and use a custom button to insert more text (in this case, replacing the highlighted text with other text), the text gets removed successfully, but the `` gets closed, and the inserted text appears outside the closing `` tag. Given that `` tags can be used to format text, you therefore lose the formatting you had applied to the text you removed, and the new text appears unformatted i.e. inheriting formatting from the parent, which is not expected behaviour. " "__label__enhancement Historique de mutation : restriction CNIL1 et non CNIL2 L'information de mutation de la parcelle présent dans la fiche d'information cadastrale, doit être disponible pour le niveau d'habilitation CNIL 1 et non CNIL 2." "__label__enhancement Set focus on first word on Ctrl+Home... ... and on last word on Ctrl+End. Currently, focus stays on the focused word before those hotkeys are pressed, resulting in unexpected results when one then presses and arrow key or tab or starts video playback." "__label__bug Bug: Component removal confirmation modal not appearing when deleting from the Find On Page pane ## Bug Added a component called `amazon-onetag` and included the `_confirmRemoval: true` prop in the schema. However, if I try to delete the component from the ""Find on Page"" pane it does not trigger a confirmation model which is what I'd expect. If I delete the component from the page layout, a confirmation model does appear. " "__label__enhancement Hyperlink methods Now that scaladoc can accepts methods in the URL, why not hyperlink all methods in the output HTML? This would allow pointing people to documentation at a finer granularity. " __label__bug Validate Collector to only pass in single element It cannot be an array or it doesn't work right. Or we need to fix that logic. "__label__bug tile_meta Dictionary Not Populated with Custom Properties Using Godot 3.0-stable and version 2.0.0 of this plugin, I can't get custom properties from Tiled into Godot. I'm using the tileset attached and importing it into Godot with the custom properties and tile metadata import options ticked. When I add a `TileMap` node and set the `tile_set` property to `tilesetsheet.tsx`, I can access the `tile_meta` dictionary from a script containing the following: ``` extends Node2D func _ready(): print($TileMap.tile_set.get_meta(""tile_meta"")) ``` Attempting to do `print($TileMap.tile_set.get_meta(""tile_meta"")[0])` gives me `Invalid get index '0' (on base: 'Dictionary').`. [tilesetsheet.zip](https://github.com/vnen/godot-tiled-importer/files/1683836/tilesetsheet.zip) " __label__bug Placeholder in error: Cannot determine executable for debug adapter '{0}'. This error message doesn't get its placeholder replaced correctly: ![Cannot determine executable for debug adapter '{0}'.](https://user-images.githubusercontent.com/1078012/35977447-1131b4aa-0cdb-11e8-9dc2-65a5337e4bd0.png) (Don't worry about the reason for the error; that's my fault; but the message should have the ID in it!) __label__enhancement Use ChromeTabs for OAuth2 web forms "__label__enhancement [TW-58] new special-tags +hide and +show _David Patrick says:_ Sometimes less is more. Sometimes the bigger the task list, the less certainty you have about what to do next. These two new special-tags are quick and easy way to _arbitrarily_ filter certain stuff (only you know what) that you could hide from some reports, and not-hide from others. after enabling them in .taskrc, with special-tag.hide = on special-tag.show = on The report default behavior would be to omit any task with a *+hide* tag, although *filter:tag.word:hide* could be added to any report (with mended syntax), and *.rc special-tag.hide=off* (or it's alias) could be used at the command-line. To keep this feature from becoming a liability, and to reduce the risk that important (but hidden) tasks will be overlooked or forgotten, warning messages should be displayed after any report that is hiding tasks. 144 tasks (11 hidden) *+show* is here for symmetry, and works in an opposite way than *hide*. It is NOT required to reverse the behavior of a +hide tag. A task with a *+show* tag is in almost every report, _always shown_ even if it would otherwise escape a query, or the be excluded by a filter. Again, the feature could turned on in the .rc, over-ridden in specific report descriptions, and/or specified at the CLI." __label__bug Cannot pass through routes with false Returing `false` doesn't allow following routes to try to match request __label__enhancement Use a color scale instead of opacity levels - [x] Move calculation of area color to a single place. 161a3f6c497b35d054961e2cdffec5004d45c490 - [x] Use `d3-scale-chromatic` to scale among different colors (instead of using different opacity levels for the same blue color). a3ae928dfabcce8818cae88af9e2add700e3a510 See: * https://github.com/d3/d3-scale-chromatic * http://colorbrewer2.org "__label__bug Segfault While Scanning Running `sudo gdb wavemon` then navigating to scan with `F3` yields the following fault. This issue seems to only occur while I'm already connected to a network on the same interface. ``` Thread 3 ""wavemon"" received signal SIGSEGV, Segmentation fault [Switching to Thread 0x7ffff6a27700 (LWP 18375)] 0x00007ffff701e430 in __lll_unlock_elision () from /usr/lib/libpthread.so.0 (gdb) bt #0 0x00007ffff701e430 in __lll_unlock_elision () from /usr/lib/libpthread.so.0 #1 0x0000000000409560 in ?? () #2 0x00007ffff701208c in start_thread () from /usr/lib/libpthread.so.0 #3 0x00007ffff6d49e1f in clone () from /usr/lib/libc.so.6 ``` Output of `wavemon -v` & `pacman -Q wavemon` ``` wavemon 0.8.0 Distributed under the terms of the GPLv3. ``` ``` wavemon 0.8.1-1 ``` Output of `uname -a` ``` Linux mavsa 4.14.13-1-ARCH #1 SMP PREEMPT Wed Jan 10 11:14:50 UTC 2018 x86_64 GNU/Linux ``` I'm using the `iwlwifi` drivers on a ThinkPad X1 Carbon 5th Edition. " "__label__bug cimport script fails to overwrite database ### Expected behaviour cimport.py should overwrite existing database if overwrite flag is set ### Actual behaviour It doesn't. ### Steps to reproduce the behaviour 1. Import model into test account 2. Run cimport.py for the same test account, setting overwrite flag to 1 ### Version of CAIRIS 1.5.2 ### Operating Systems / Hardware Ubuntu/Safari " __label__enhancement Harmonize HeatMap and HitterVal visualizations They currently have 2 different color schemes and facet grids "__label__bug Problem with installing nuget package While trying to install nuget package I receive an error: _Severity Code Description Project File Line Suppression State Error Could not install package 'ExtendedXmlSerializer 2.0.1'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.5', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author. 0_ I'am using Visual Studio 2015," "__label__bug Add password validators Story ==== At the moment it's possible to register a new user with passwords that have only one char or don't follow a minimum security protocol. To enable it we need to add to our settings: ``` AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] ``` Acceptance criteria ============= GIVEN I enable the password validators in our settings AND a new user registers going to our register page THEN we validate the password" "__label__bug & not acceptable when exporting models Possible to enter invalid XML characters in UI, but -- when exporting the model -- these are not properly escaped. " "__label__bug HasFieldsWithSameValues not working with auto-property inheritance. Hi, First of all, thank you for providing us with this very useful NFluent API. However, we're facing an issue when using the HasFieldsWithSameValues assertion on an object inheriting an autoproperty by just adding an attribute. For instance: ``` public class Parent { public virtual string AutoProperty { get; set; } } ``` ``` using System.ComponentModel.DataAnnotations; public class Child : Parent { [Required] public override string AutoProperty { get; set; } } ``` ``` [TestMethod] public void TestMethod() { // Arrange var autoPropertyValue = ""I am a test.""; var childOne = new Child { AutoProperty = autoPropertyValue }; // Act var childTwo = new Child { AutoProperty = autoPropertyValue }; // Assert Check.That(childOne).HasFieldsWithSameValues(childTwo); } ``` The test is failing with the message: ``` The checked value's autoproperty 'AutoProperty' (field 'k__BackingField') does not have the expected value. The checked value: [""I am a test.""] The expected value: [null] ``` However, when I use the Parent class, the following test is in success : ``` [TestMethod] public void TestMethod() { // Arrange var autoPropertyValue = ""I am a test.""; var childOne = new Child { AutoProperty = autoPropertyValue }; // Act var childTwo = new Parent { AutoProperty = autoPropertyValue }; // Assert Check.That(childOne).HasFieldsWithSameValues(childTwo); } ``` Do you know if this behavior is normal ? We have a workaround here by using the Parent class but we're wondering what to do in the case when we have both overriden auto-properties in the Child class and new properties as well (not in Parent class). Thank you for your feedback. " "__label__bug druid解析SQL中表名的BUG SELECT (SELECT count(*) FROM warn_condition_strategy WHERE user_id = 2510701 AND is_delete = 0 AND strategy_state IN (1, 2, 6)) AS monitorNum, (SELECT count(*) FROM warn_condition_trade_history WHERE user_id = 2510701 AND date_sub(curdate(), INTERVAL 7 DAY) <= date(create_date)) AS recentEntrustNum, (SELECT count(*) FROM warn_condition_strategy WHERE user_id = 2510701 AND (is_delete = 1 OR strategy_state IN (3, 4, 5))) AS historyNum, (SELECT count(*) FROM warn_condition_trade_history WHERE user_id = 2510701 AND status = 1) AS unreadEntrustNum 这种SQL查询通过druid解析不出表名warn_condition_strategy ,必须改成group by 方式才可解析出来!" "__label__question SX1276 compatibility Hi, I am using two SX1276RF1IAS-ND modules o ne as a transmitter and one as a receiver. I want to transmit the data and receive the data only. can any one guide how to configure this module as a transmitter and as a receiver to send and receive the data. thanks" "__label__enhancement itemCategoryHash for ornaments It appears that Ornaments don't have their own itemCategory. Looking up an Ornament, such as `907775118 (VEIST Silver)` , shows that it has itemCategoryHashes of `56 (Mods)`, `59 (Mods)`, `52 (Inventory)`, which is the same set of itemCategoryHashes that other Weapon/Armour mods have (like 145499294). It would be really handy if Ornaments had their own itemCategoryHash so we could easily distinguish them. [Right now I'm looking at the itemTypeDisplayName](https://github.com/joshhunt/destinySets/blob/f0de61b/src/views/DataExplorer/filterItems.js#L199-L202) and judging based on that, which isn't very localisable " "__label__question Question: amazon SNS Hi, Can this be configured to work with other providers, like amazon SNS? Or is it designed for Firebase only? Thanks!" "__label__question ""Couldn't find a compatible version of VS Live Share with this version of Code."" I have the latest preview version (15.6.0 Preview 3.0) on my Win10 x64 machine. Sent the Live Share link to a colleague and he got this message: ```Couldn't find a compatible version of VS Live Share with this version of Code.``` Does the person who gets the link need to also be running the latest preview version of VS? He has both 2015 and 2017 Pro on his PC. I wanted to share my code and allow us to collaborate on my desktop, not his." __label__bug cpu.cour_count and cpu.socket_count is wrong for VMware VMs # Opening a new issue ___ ## Specify type: - Bug ### Bug severity (if applicable): - High ___ ## Description: For some reason the cpu.socket_count on VMware VMs is showing very high numbers (128 sockets or 64 sockets). This impacts cpu.core_count since they are tied together. cpu.count appears to work correctly for VMs so maybe we just use that value for cpu.core_count if it is a VM (and we don't have to worry about hyperthreading)? ___ ## Bug Report ### Version of rho: [ 0.0.31 ] ### Expected behavior: Describe the expected behavior for the program. ### Actual behavior: Provide the actual behavior for the program. ### Steps to reproduce: List clear steps to reproduce the bug. ### Environment information: Type | Operating System | OS Version | Python Version | Virtualization --------------- | ---------------- | ---------- | -------------- | -------------- Target System | RHEL | **6.8** | 2.4.6 | VMware __label__bug Lock screen is overridden When you lock the phone while you are using an incompatible app. Tested on Samsung Galaxy S5. __label__enhancement Miner should construct blocks that maximise profit Maximise reward per byte. __label__bug The build failed - Ultimate Guitar changes their website [Travis CI Logs](https://travis-ci.org/masterT/ultimate-guitar-scraper/jobs/337310112). I'll patch it as soon as I can! __label__enhancement Store target temperature via SPIFFS "__label__bug Thaumonomicon Localization issues The first research page in the Golemancy tab seems to not be localized properly. This bug was present in BETA2 already. I tested it with BETA3 again. ![2018-01-27_15 44 07](https://user-images.githubusercontent.com/20734190/35473041-318232b2-037a-11e8-8672-f20a6c68e2e4.png) In Mirror Magic I also found this one unlocalized ![2018-01-27_15 48 15](https://user-images.githubusercontent.com/20734190/35472997-9693d404-0379-11e8-9dc9-fd3e9e55004a.png) And another, but minor, issue is that the formatting of this text does not stay over 2 lines ![2018-01-27_15 47 02](https://user-images.githubusercontent.com/20734190/35473045-43de053a-037a-11e8-9c51-34c3c295f466.png) EDIT: Also found this one. I think it is voidmetal? ![2018-01-27_16 02 12](https://user-images.githubusercontent.com/20734190/35473119-87167944-037b-11e8-8aaa-4a6a83e6c8d5.png) I am not sure if any of those are duplicates but I have not seen any yet. " __label__enhancement Implement GPU benchmarks "__label__bug Using encodeURIComponent for serialization is wasteful and breaks optimizations We encode the keys and values of the db using encodeURIComponent as part of serialization. However, this is wasteful because the serialization is never embedded in the URL. All we need is to properly escape and unescape string literals for use with JSON.stringify and parse. Additionally, because of this encoding, forward slashes also get encoded, which means the optimization for converting flat array to hierarchical paths doesn't work." "__label__enhancement Save backup copy of trading config files I think it's safer to save a copy of the trading strategies inside a `./trading/backup/` folder. This way, users can easily restore their pre-PTF setup." __label__enhancement Apply Travis CI "__label__enhancement How to apply AWS SNS/SQS subscription filter _This issue was originally opened by @mabead as hashicorp/terraform#16844. It was migrated here as a result of the [provider split](https://www.hashicorp.com/blog/upcoming-provider-changes-in-terraform-0-10/). The original body of the issue is below._
### Terraform Version 0.9.5 ### Description Recently, it is now possible to apply message filter when we register a SQS to SNS subscription. See [here](http://docs.aws.amazon.com/sns/latest/dg/message-filtering.html) for more details. I looked [the sns_topic_subscription doc](https://www.terraform.io/docs/providers/aws/r/sns_topic_subscription.html) but did not find anything related. I also checked if it was possible to set subscription attributes using terraform but I did not find anything as well. Are there any plans to add that feature to terraform? " "__label__question Clarification on running Flink Streaming job for ApplicationStatAggergation feature Hi Team, I would like to run Pinpoint flink stream job to leverage the ApplicationStatAggregation in 1.7.0, Currently i would need to understand the following things for setting up the same Clarifications: 1) Which version of Flink jar we need to use for running the streaming job (pinpoint-flink-job-2.0.jar) 2) Can i use the latest version of flink-1.4.0 - link - https://archive.apache.org/dist/flink/flink-1.4.0/flink-1.4.0-src.tgz 3) Do we need separate Zookeeper server for running the flink job or we can use the zookeeper which already being available in the design for sending data to Hbase 4) How do we manage and scale the flink cluster, lets I might be hitting around 1000 TPS maximum from all the agents and how do we really design the capacity of flink server nodes 5) I am using jdk8 and hope it is fine for running the stream jobs Let me know If I have misinterpreted anything here " __label__enhancement Default to the first game in the list if a team is provided and they don't have a game that day __label__enhancement Implementera Fäll ut/Fäll in på komin Ta Fäll ut/Fäll in funktionaliteten från Gymnasiewebbarna och impemetera på komin. Först i TEST och sedan förbereda redaktörer för rätt användande. "__label__question Left from group when add Hi, How can I Left from group when some one add my bot to group ?" __label__enhancement Allow macroparticles to travel outside the mesh Give the user the option of whether the simulation should stop if macroparticles travel outside the radiation mesh. __label__enhancement Show order Epis Missing Oder EPIs when showing the order details. "__label__bug OkHttpServices release() method throws null pointer exception OkHttpServices release() method throws null pointer exception when called more than once. In release() method we are doing a shutdown of the executorpool of OkHttpClient but if the OkHttpClient is null, a null pointer exception is thrown. We have to check if the OkHttpClient is null. If it is null, then just return from the method. " __label__enhancement Add Ubuntu builds for H2020 ESROCOS Dockerfile for Ubuntu-Xenial for H2020 ESROCOS to test integration with Ubuntu-based distribution of ROS toolkit __label__bug AbsoluteQuantitationMethodFile::load() stod error ### Description All columns of transformation_model_params_ must be populated or an error is produced. ### Fix - Add in an a predefined default and check for the expected value - Update the test input to include an empty value in one of the transformation_model_params_ columns "__label__bug Alert Rule Builder: Save Alert Rule returns user to Status/Home page (regression?) and not to Alert rules list I reported this last week as issue #2740 however it was closed, because the fix to issue #2674 was expected to fix this issue as well. It appears that the fix to #2674 has been merged. I see in the edit TICKscript view the buttons Save New TICKscript and Exit, however when working with Alert Rule Builder the ""Save Rule"" button still returns me to the Status page. Apparently I failed to mention that the Save Rule button was clicked from ""Alert Rule Builder"" and not ""TICKscript Editor"" Testing against (nightly build): $ chronograf --version 2018/02/06 10:04:42 Chronograf 1.2.0~n201802050832 (git: 058df60e0e96ace38ea79808302a210a78bd3f2e) Browser is Chrome 63 OS is Ubuntu 16.04 When working with Alert Rule Builder... After clicking the ""Save Rule"" button on the Create new alert form, the Status/Home page loads. I was expecting to be returned to the list of Alert Rules located through the Alerting/Create Icon. I'm currently reviving Chronium Selenium tests, and from the story/test code it appears that returning directly to the rules list was the way it behaved previously. ![savealertrule01](https://user-images.githubusercontent.com/25881301/35851139-54603086-0b27-11e8-92a3-95210c7cee0d.png) ![savealertrule02](https://user-images.githubusercontent.com/25881301/35851152-61d0eff8-0b27-11e8-9489-00ad3750b2e1.png) ![savealertrule03](https://user-images.githubusercontent.com/25881301/35851174-77295566-0b27-11e8-966c-7ee9389f8a43.png) " __label__enhancement [ILERI_JAVA_2018G] src/main/resources Hocam Merhaba src/main/resources altına resim css bootstrap koyup pathını veriyorum localhost'ta işlemiyor eclipse'te web browser ile başlatınca arkaplan oluyor bunun sebebi nedir acaba Teşekkurler "__label__question (1071, 'Specified key was too long; max key length is 767 bytes') As in Laravel, if a system hasn't been properly configured, this error will popup. In Laravel you do [a simple hack](https://laravel-news.com/laravel-5-4-key-too-long-error) and it will overwritte the default length of VARCHAR. How do you do this in Masonite? I explicitely set the chars length in the User migration file: ``` table.string('email', 191).unique() ```" __label__bug @types/bytebufferいれて コンパイルエラー吐いているので、インストールしよう。 本来であれば、fabric-client が依存関係として要求するべきであるのだけれど、現状そうじゃないからしょうがないので `npm i -D @types/bytebuffer` しておいてほしい。 __label__enhancement Trashpoint size slider improvement __label__enhancement node fetch hook `notion_core::provision::by_version` should consult a node fetch hook. This blocks issue #4. "__label__bug Alarm starts immediately after adding it This bug also affects the ""next alarm"" time in the footer." "__label__bug test sweeper, comment tomorrow Be sure to leave comments on this one daily to show it staying open" "__label__question Aula#25 - Eventos inline Sobre a questão de eventos inline, você usou o onClick=""boom()"" (tipo eu fiquei, caramba ele fez oque os frameworks fazem, mas sem precisar de um framework), logo me gerou uma duvida se fazer isto é errado, porque o angular e o vueJs utilizam isso e chamam de diretivas ? @fdaciuk " __label__bug Fix right-hand navigation "__label__bug use-cache option broken setting `use-cache = False` (either in settings or in library) ❯papis check ``` ~ Traceback (most recent call last): File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/bin/.papis-wrapped"", line 12, in sys.exit(main()) File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/main.py"", line 24, in main papis.commands.main() File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/commands/__init__.py"", line 236, in main commands[""default""].main() File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/commands/default.py"", line 167, in main commands[self.args.command].main() File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/commands/check.py"", line 46, in main self.get_args().search File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/api.py"", line 216, in get_documents_in_lib return papis.api.get_documents_in_dir(directory, search) File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/api.py"", line 197, in get_documents_in_dir return papis.utils.get_documents(directory, search) File ""/nix/store/mfgz8nf4a1i35had90zxii4cx8dpy9v2-papis-0.5.2/lib/python3.6/site-packages/papis/utils.py"", line 298, in get_documents folders = get_folders() TypeError: get_folders() missing 1 required positional argument: 'folder' ```" __label__enhancement Migrate to TF 1.5 We should look into migrating to TF 1.5 Here is the [announcement](https://developers.googleblog.com/2018/01/announcing-tensorflow-15.html) and the [release notes](https://github.com/tensorflow/tensorflow/releases/tag/v1.5.0). __label__question Use random song? Do you know if it is possible to have the alarm select a random file from the sounds folder when the alarm goes off? I have been looking into the code but I know very little with regards to javascript so I haven't been able to find a way. Thanks for making such an awesome module! __label__bug Android zoom description With return to description the WebView-Zoom-value are wrong __label__enhancement [TW-1822] notify-send printable format _Sebastian Sonne on 2016-06-24T12:27:36Z says:_ It would be neat to have some output-format that can be printed via notify-send so taskwarrior in combination with notify-send can be called periodically and remind you of stuff to do. "__label__question Investigate disabling of gvfs: afc, gphoto2 & mtp systemctl --user stop gvfs-afc-volume-monitor.service gvfs-gphoto2-volume-monitor.service gvfs-mtp-volume-monitor.service systemctl --user disable gvfs-afc-volume-monitor.service gvfs-gphoto2-volume-monitor.service gvfs-mtp-volume-monitor.service" __label__enhancement Tab Index to change ordering Allow users to tab through vertical columns (quarters) rather than the default horizontal tab order. "__label__bug Missing template variable in order details view ### What I'm trying to achieve Create an order as an anonymous customer and add a note. ### Steps to reproduce the problem 1. Place an order as an anonymous user. 2. Add a note in the order details page. ### How it failed (Please include a stack trace if this problem results in a crash.) ![image](https://user-images.githubusercontent.com/5421321/35519222-e623d2bc-0513-11e8-9b59-458bfe36dbf6.png) Also, there is some spacing missing above the page title ""Order #124: Open"". " "__label__enhancement Auto-updater for Neblio Core wallet The updater should either only notify users about the existence of a new update (with a summary of version update info), or should download the new version and install it. The latter is risky due to the possibility of DNS poisoning. " "__label__bug [TW-1068] ""depends"" is missing from the man page _steve rader on 2010-12-29T19:13:50Z says:_ ...yet blocked and unblocked are explained. How curious. steve --" "__label__bug [TW-671] Adding task with number followed by period appends 0s to word _Matt Kraai on 2011-09-15T02:27:35Z says:_ If I add a task that contains a number followed by a period (e.g., ""task add 0.""), 0s are appended after the period (e.g., the description of the task added by the previous command would be ""0.000000"")." "__label__bug [TW-1267] If default.project is defined it's not possible to add a task without a project _Renato Alves on 2014-02-20T15:47:36Z says:_ As the summary describes if default.project is defined to anything other than the default, there is no way to add a task without a project. The only way to workaround this is by creating a task and then modify the task and remove the project. Reproducible with attached file." __label__bug MixItUp.Base.Util.SpecialIdentifierStringBuilder.() - System.NullReferenceException: Object reference not set to an instance of an object. 2/9/2018 4:04:39 PM -08:00 - System.NullReferenceException: Object reference not set to an instance of an object. at MixItUp.Base.Util.SpecialIdentifierStringBuilder.d__6.MoveNext() in S:\Code\mixer-mixitup\MixItUp.Base\Util\SpecialIdentifierStringBuilder.cs:line 90 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at MixItUp.Base.Actions.ActionBase.d__14.MoveNext() in S:\Code\mixer-mixitup\MixItUp.Base\Actions\ActionBase.cs:line 90 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at MixItUp.Base.Actions.ChatAction.d__21.MoveNext() in S:\Code\mixer-mixitup\MixItUp.Base\Actions\ChatAction.cs:line 42 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at MixItUp.Base.Actions.ActionBase.d__11.MoveNext() in S:\Code\mixer-mixitup\MixItUp.Base\Actions\ActionBase.cs:line 74 "__label__bug SyncProducer.SendMessages doesn't work properly in tests ##### Versions *Please specify real version numbers or git SHAs, not just ""Latest"" since that changes fairly regularly.* Sarama Version: `02452b3987ac0e7b93702149e96d4f9b2e6521ec` Kafka Version: `not applicable` Go Version: `go version go1.7.3` ##### Problem Description The MR #677 brought the `SendMessages` function and its mock counterpart. Now the test didn't really test assertions in the form of: ``` producer.ExpectSendMessageAndFail(sarama.ErrOutOfBrokers) ``` So somewhere in the history of this file, it stopped working. If I change the mock to use the sister function `SendMessage`, my tests work: ``` func (sp *SyncProducer) SendMessages(msgs []*sarama.ProducerMessage) error { for _, msg := range msgs { _, _, err := sp.SendMessage(msg) if err != nil { return err } } return nil } ``` But I don't know if that would be the correct fix. Another way to fix this just by editing this line: ``` expectations := sp.expectations[0 : len(msgs)-1] ``` to ``` expectations := sp.expectations[0 : len(msgs)] ``` If there's 1 message, a slice from `0` to `1 - 1` is going to be an empty slice. But this fix does not make the `SendMessages` actually use the `expectation.CheckFunction`. I can write a minimal test for this if this description was too confusing, and a merge request if someone tells me the preferred way to fix this." "__label__bug Negative values for Host suspend time The withSuspendTimeForHostUnavailable method (HostAvailabilityListener class) takes an argument of type Duration . Duration allows negative values (Duration.ofDays(-100)). When such a value is set and a node is shut down, the new forest config is taken almost immediately. Since we throw IllegalArgumentException for negative minHosts value, should we do the same here ? 13:43:14.308 [pool-3-thread-41] ERROR c.m.c.d.HostAvailabilityListener - ERROR: host unavailable ""rh7v-intel64-90-test-9.marklogic.com"", black-listing it for PT-2400H 13:43:14.328 [pool-3-thread-41] INFO c.m.c.d.impl.WriteBatcherImpl - (withForestConfig) Using [rh7v-intel64-90-test-7.marklogic.com, rh7v-intel64-90-test-8.marklogic.com] hosts with forests for ""WBFailover""" "__label__bug add new member creates two users at the same time New member is added to this org in this link https://opencollective.com/renablehost/edit#members Creates two entries in postico see User ID8843 and ID8841 with the same email address as well as two collectives for them 10072 and 10073 Then the system adds and /null as the new member see https://opencollective.com/renablehost/ the first avatar is a /null and none of the users created are added. The same thing happened with dot net finance and it was resolved when I removed the email address from the duplicated user. Thank you for taking the time to report an issue 🙏 The easier it is for us to reproduce it, the faster we can solve it. So please try to be as complete as possible when filing your issue. *** URL: Logged in as: (just provide your username or the url of your profile) Error message if any: Expected result: Browser: Bonus point if you can add a screenshot :-) Thank you and have a wonderful day/evening! (and sorry for inconvenience! We'll do our best to solve this ASAP) " "__label__enhancement Extensive log ## Issue ### Issue Type - [ ] Bug. - [x] Feature. ### Report #### Description At rc!log , there should be an option to activate Role Updates etc. // By beta#0922 ### Steps to reproduce >Leave Blank if this is a Feature Request - Step 1 - Sample Step - Step 2 - another sample Step - Step 4 - Feel free to add Steps " __label__bug Analyse - FFT Hier scheint es noch Probleme zu geben. Erik ist dran. __label__enhancement Feature: add a digital clock in the animation "__label__enhancement Type variables in Classifier- and ConstructorTypeRef allow any kind of type to show up as property staticTypeRef Because `constructor{T}` is allowed (with type variable T) any kind of type reference can end up in the ConstructorTypeRef: ``` class B {} class C {} enum Color { RED, GREEN, BLUE } class G { ctor: constructor{T}; } var gb0: G; // <-- this case is fully supported since end of June 2016 var gb1: G; var gb2: G<~B>; var gb3: G; var gb4: G; var gb5: G; var gb6: G; class Other { m(): G {return null;} } var gb7 = new Other().m(); // type of gb5 will be ""G"" ``` Especially `constructor{constructor{B}}` seems odd. We either have to support all the above cases properly (both conceptually and in the implementation) or disallow type variables in `type{X}` and `constructor{X}`. NOTE: case `gb0` above is properly supported since end of June 2016, see https://github.numberfour.eu/NumberFour/n4js/pull/105 " "__label__bug CustomFields are not updated in update_case ### Request Type Bug ### Problem Description Changes to the `customFields` attribute of a case are not sent when using `api.update_case(case)` ### Possible Solutions Add `customFields` to the following lines, https://github.com/TheHive-Project/TheHive4py/blob/571427661f2d0bc999bd05963cbb33d6b4aa8395/thehive4py/api.py#L111-L114" "__label__enhancement Clear Playlist Add button to clear the playlist. Not sure how often this one is used TBH but it's on the current interface. Also add playlist pruner to the API. Currently this is managed by a long running process, but adding something in the API won't effect that. Just means it won't have much to do." __label__enhancement Implement caching for agent-check-handler This would vastly improve performance for the agent-check tcp service. See https://github.com/braintree/litmus_paper/pull/25 for inspiration. __label__bug building depot for stdcxx fails While trying to build the latest version of sculpt I got a build error for stdcxx about a missing object file. While investigating I realized that no source files were in the src/stdcxx directory. __label__enhancement remove use of jQuery __label__enhancement [FR] search history Would be great to have the search history independent from YouTube accounts.. "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/UKby4T_XBo2iAhY2_147naSKYTtbTQ9TU3jGlCA_i6SrAvQe4VdU6rWsfYVRhEvp0/etrR96TKV5XRD9KYL4j_OrNWlWellCX1lFlC_HNIYp2XF7-ATKB8Kh2l7AbdacNs0/-NksJN_qkT-lb69Nzvj7a2Z686DaFBOn2DKJCZZmb-A1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" "__label__bug array-callable-notation not work **Not Work** ``` return $this->whereFirstOrDefault(array($this, ""isImage"")); ``` **Work** ``` return $this->whereFirstOrDefault(function(F $f) { return $this->isImage($f); }); ```" "__label__bug [TW-528] task crashed with SIGSEGV in Context::dispatch() _Bryce Harrington on 2012-05-01T21:53:18Z says:_ Forwarding bug from Ubuntu reporter James Troup: https://bugs.launchpad.net/ubuntu/+source/task/+bug/980093 """""" How to reproduce: | james(at)ornery:$ mkdir /tmp/x; cd /tmp/x | james(at)ornery:/tmp/x$ echo ""data.location=/tmp/x/.task"" > .taskrc | james(at)ornery:/tmp/x$ task rc:.taskrc shell | task 2.0.0 shell | | Enter any task command (such as 'list'), or hit 'Enter'. | There is no need to include the 'task' command itself. | Enter 'quit' (or 'bye', 'exit') to end the session. | | task> add foo | Using alternate .taskrc file .taskrc | Created task 1. | task> 1 edit [ just quit the editor at this point ] | Editing complete. | No edits were detected. | Using alternate .taskrc file .taskrc | task> next | A configuration file could not be found in . | | Would you like a sample .taskrc created, so taskwarrior can proceed? (yes/no) no | Using alternate .taskrc file .taskrc | Cannot proceed without rc file. | Segmentation fault (core dumped) Using a fully qualified path as the argument to 'rc' works around this crash but breaks my use case, i.e. being able to cd into an arbitrary directory and run a 't' alias which is 'task rc:.taskrc'. """""" SegvAnalysis: Segfault happened at: 0x4256ff <_ZN7Context8dispatchERSs+575>: mov (%rdi),%rax PC (0x004256ff) ok source ""(%rdi)"" (0x00000000) not located in a known VMA region (needed readable region)! destination ""%rax"" ok SegvReason: reading NULL VMA Signal: 11 SourcePackage: task StacktraceTop: Context::dispatch(std::string&) () Context::run() () CmdShell::execute(std::string&) () Context::dispatch(std::string&) () Context::run() ()" "__label__bug Looks like patch is trying to remove an element that doesn't exist ## Bug When adding `
  • ` elements to a `
      `, if I add an empty tag, next update through the system throws an error. ## Reproduce it 1. Clone https://github.com/LearnHyperapp/hyper-list , npm install, npm run start 2. http://localhost:8080 3. click the input, hit enter 1x 4. type something in the input box What should happen: 1 empty item in the list, and some input content What happens: 1 empty item, and this exception > Uncaught TypeError: Failed to execute 'removeChild' on 'Node': parameter 1 is not of type 'Node'. > at done (index.js?ee11:214) > at removeElement (index.js?ee11:220) > at patch (index.js?ee11:305) > at patch (index.js?ee11:276) > at patch (index.js?ee11:268) > at render (index.js?ee11:58)" "__label__bug Export to CSV sometimes formats times incorrectly The time format can sometimes be corrupted in hours-to-csv-text type output. Here is an example from this week; ``` [nemo@Sailfish ~]$ [nemo@Sailfish ~]$ cat /home/nemo/Documents/Thisweek.csv '{cd4e8ffa-d9f5-4c2d-8a2b-a333016f6a11}','2017-11-15','07:-1','16:22',9.3800000000000008,'20153201429507964488','No description','0,'0' '{bd248d06-053b-4738-894f-d968c4bf2e99}','2017-11-14','21:29','21:55',0.42999999999999999,'20153201429507964488','No description','0,'0' '{7119dbb6-de34-49a0-8107-36ecbd1fa2c2}','2017-11-14','07:-1','16:19',9.3300000000000001,'20153201429507964488','No description','0,'0' '{0a717a33-f887-433c-bcac-7a12f5f500a8}','2017-11-13','18:48','19:40',2.4700000000000002,'20153201429507964488','No description','0,'0' '{b0766b97-97ee-4978-aa23-aece9e5ce2e1}','2017-11-13','07:00','15:07',8.1199999999999992,'20153201429507964488','No description','0,'0' [nemo@Sailfish ~]$ ``` I apologise for the bad formatting in above section, but if you concentrate on it you can probably see that the date/startTime/endTime fields of the first row are as follows; '2017-11-15','07:-1','16:22' In reality this should appear as; '2017-11-15','06:59','16:22' It seems to me that **data[""startTime""].toString()** method is for some reason mangling the date value into something that it really never should be doing...? " "__label__bug Missing item swap sound for axe, pickaxe, tools... Hey, is there a way to manually restart the Sound engine? Sometimes it crashes without the auto restart (mainly when disconnecting from a server). I tried the /ds reload, but it seems that is something different ^^. The only way I know of right now is to restart the game entirely(which takes a looong time with modded mc as you know :D) -Dj" "__label__bug [BUG] Webpack tree-shaking isn't working for root imports. ## Overview Webpack tree-shaking at least as of `3.10` just isn't working is the short answer. I have a new experiment repository up at: https://github.com/FormidableLabs/rlr-tree-shaking-experiment This mean a couple of things: 1. **Any** builds importing like `import { something } from 'redux-little-router'` is likely getting a **lot** more code and maybe even other dependencies than they should. 2. This explains the behavior in https://github.com/FormidableLabs/redux-little-router/issues/261 that shouldn't be happening. ## Workarounds The present workaround to all of this is one-off imports, which means something like instead of: ```js import { routerForBrowser } from 'redux-little-router'; ``` do: ```js import routerForBrowser from 'redux-little-router/es/environment/browser-router'; ``` in your frontend code and: ```js import routerForBrowser from 'redux-little-router/lib/environment/browser-router'; ``` in your node code. This is problematic for universal code which instead should probably do something like: ```js import routerForBrowser from 'redux-little-router/environment/browser-router'; ``` in universal code and something like: ```js const path = require('path'); alias: { 'redux-little-router': path.dirname(require.resolve('redux-little-router/es/index')) } ``` in webpack config. ## Task - [ ] Figure out if there is something in this project's code that can fix things up (?) - [ ] Look to steps for specific issues like #261 such as moving at least `immutable` things to `src/immutable/index.js` instead of `src/index.js` /cc @tptee " __label__bug sistemare la grafica realizzare una tabella simile a http://coropaulus.altervista.org/ in modo tale che sia graficamente bella __label__bug Debug version: SAM output of CRAM file is populated with debug on pipe The SAM output of a CRAM file is unintentionally populated with debug lines. * version of sambamba ``` sambamba 0.6.7 This version was built with: LDC 1.1.1 using DMD v2.071.2 using LLVM 3.8.1 bootstrapped with LDC - the LLVM D compiler (0.17.4) ``` * version of samtools that did bam2cram ``` samtools 1.6 Using htslib 1.6 Copyright (C) 2017 Genome Research Ltd. ``` System version: ```sh uname --kernel-release && cat /etc/system-release ``` ``` 2.6.32-696.3.1.el6.x86_64 CentOS release 6.9 (Final) ``` * the command line or bash script used (feel free to shorten paths and filenames) ```sh htsfile sampleX.aln.cram ``` ``` sampleX.aln.cram: CRAM version 3.0 compressed sequence data ``` ```sh sambamba view -C -h sampleX.aln.cram 2>/dev/null | less -S ``` Would return SAM format on stdout: 1. the header 2. debug lines ``` cram_read_container COPIED #2 COPIED #2 COPIED #2 cram_read_container COPIED #3 COPIED #3 COPIED #3 ... cram_read_container COPIED #4 COPIED #4 COPIED #4 COPIED #4 COPIED #4 COPIED #5 COPIED #69 COPIED #69 COPIED #69 cram_read_container COPIED #5 COPIED #5 COPIED #5 COPIED #5 COPIED #5 ``` 3. alignments Looking at stderr: ```sh sambamba view -C -h sampleX.aln.cram 2>&1 1>/dev/null | less ``` The output is: ``` Init cram_fd* #1 Init cram_fd* #2 Init _Anonymous_25* #1 cram_read_slice (1/1) Init cram_slice* #1 Init _Anonymous_25* #2 cram_read_slice (1/1) Init cram_slice* #2 Init _Anonymous_25* #3 cram_read_slice (1/1) ... Init cram_slice* #69 Init _Anonymous_5* #4 Free _Anonymous_5* #3 Free cram_slice* #3 Free _Anonymous_25* #3 ``` The debug line on stdout is written on this line: [cram/wrappers.d#L162](https://github.com/biod/sambamba/blob/v0.6.6/cram/wrappers.d#L162) Problem occurs in both Zsh and Bash. __label__enhancement concider using webpack dashboard https://medium.com/@wesharehoodies/webpack-dashboard-with-create-react-app-vue-cli-and-custom-configs-49166e1a69de __label__bug Too many desktop notifications "__label__bug Incorrectly reorders #[macro_use] imports -> compile error `rustfmt` 0.3.6-nightly breaks the following code, during formatting: ```rust #[macro_use] extern crate nom; extern crate regex; #[macro_use] extern crate log; fn main() { error!(""Hello, world!""); } ``` It is not aware that `error!` is defined in both [`nom`](https://docs.rs/nom/1.2.4/nom/macro.error!.html) and [`log`](https://docs.rs/log/0.4.1/log/macro.error.html), but the version from `log` is active, as it is imported second. (I'm not aware of any documentation about this being the case, but it's what's observed here.) `rustfmt` reorders the imports alphabetically, into: ```rust #[macro_use] extern crate log; #[macro_use] extern crate nom; extern crate regex; ``` ...causing the wrong macro to be called, and a super confusing error: ``` Compiling foo v0.1.0 (file:///var/tmp/faux180128.doable/foo) error: unexpected end of macro invocation --> src/main.rs:8:12 | 8 | error!(""Hello, world!""); | ^^^^^^^^^^^^^^^ error: aborting due to previous error ``` Either rustfmt needs to be aware of which macros are imported, or perhaps it should not reorder `#[macro_use] extern crate`s? --- I am using these versions of these crates: ```toml [dependencies] nom = ""1.2"" log = ""0.3"" regex = ""0.1"" ``` It doesn't appear to happen if you remove the `regex` line. I do not know what that is about. Found in the wild formatting https://github.com/joelself/tomllib. " "__label__bug Implementing interfaces before extending base class causes warning with odd message IDEBUG-784 For example in this case: ``` class A {} interface I {} class B implements I extends A { } ``` you get a warning: Use comma ("","") instead of keyword ""extends"". This warning will become an error soon! Perhaps an error instead of a warning and a quickfix to rearrange? " "__label__question Html producer general query. Hi, I am wondering about the state of the html producer. I have used it successfully a while ago now and I'm wondering how it is keeping up in terms of cef versions. Has the producer been upgraded in recent times? Thank you" "__label__question autocompletions not including this properties correctly When I use autocompletions in the monaco editor, this member variables don't seem to autocomplete correctly. For example: ```javascript function myFunc() { this.foo = [] this.foo. // I would expect autocompletions here var bar = [] bar. // this works, showing array methods } ``` How can I get the this member variables to also show up in autocompletions?" "__label__enhancement How to update the divolte-collector.conf and reload the service Thanks for this great service. We are running Divolte in a docker container and it would speed of development and testing of the config file if we can just copy the file into the container and have it be reloaded automatically. Reading the documentations it seems like this is done for the geo2ip database file. Is that true? Thanks again. **Also we have a bug to report on Divolte 0.6:** When we start the service in the container and run it again we get this error: ``` 2018-01-26 03:28:39.509Z [main] INFO [AppInfoParser]: Kafka version : 0.10.2.1 2018-01-26 03:28:39.509Z [main] INFO [AppInfoParser]: Kafka commitId : e89bffd6b2eff799 2018-01-26 03:28:39.511Z [main] WARN [AppInfoParser]: Error registering AppInfo mbean javax.management.InstanceAlreadyExistsException: kafka.producer:type=app-info,id=divolte.collector at com.sun.jmx.mbeanserver.Repository.addMBean(Repository.java:437) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerWithRepository(DefaultMBeanServerInterceptor.java:1898) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamicMBean(DefaultMBeanServerInterceptor.java:966) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(DefaultMBeanServerInterceptor.java:900) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:324) at com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(JmxMBeanServer.java:522) at org.apache.kafka.common.utils.AppInfoParser.registerAppInfo(AppInfoParser.java:58) at org.apache.kafka.clients.producer.KafkaProducer.(KafkaProducer.java:335) at org.apache.kafka.clients.producer.KafkaProducer.(KafkaProducer.java:204) at io.divolte.server.kafka.KafkaFlushingPool.(KafkaFlushingPool.java:45) at io.divolte.server.Server.lambda$new$6(Server.java:92) at com.google.common.collect.CollectCollectors.lambda$toImmutableMap$1(CollectCollectors.java:62) at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169) at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175) at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948) at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481) at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) at io.divolte.server.Server.(Server.java:89) at io.divolte.server.Server.(Server.java:60) at io.divolte.server.Server.main(Server.java:199) ``` It seems that when kafka-producer was initialized then stopping the service does not clean up something so restarting it will cause this error. The service actually works afterward and sends the data to kafka successfully. " "__label__bug the ""go forward one turn"" button goes forward more than one when it is held down it continues to go forward. Good idea for another button, but not the intended effect" __label__enhancement Mark all issues that are in the current sprint "__label__bug Formatting issue Under ""Privately expose apps using a custom domain with TLS"", step 6, looks like the formatting is off around ""network traffic cannot be forwarded""" "__label__bug Gibberish content in the generated report. **Summary:** See the attached images. The app didn't show any errors. The generated report contains gibberish data. Tried to rebuild the report 3 times, ended with the same result. **Details:** .apk file: https://play.google.com/store/apps/details?id=com.mkdingo.goran.signlangugage The file was downloaded via [APKPure](https://apkpure.com/region-free-apk-download?p=com.mkdingo.goran.signlangugage). os: Linux mint **Proof of error:** StaCoAn ![](https://i.imgur.com/uhlpNdA.png) Jadx: ![](https://i.imgur.com/DmTEuyH.png) **Additional info:** The app uses Cyrillic characters for resources(ex: R.id.в, R.id.ж). Could this be the cause of the problem?" "__label__enhancement Support Copy and Paste of ticket URL's When one or more ticket URL's a currently stored in the clipboard, the user should be able to ""Paste"" them into Ticket Downloader and have them added to the list. " "__label__bug [TW-422] Directory uses stat() to check if file is directory _Jakub Wilk on 2013-03-13T18:27:02Z says:_ On Solaris and Haiku, Directory::remove_directory() and Directory::list() use the stat() function to determine whether a file is a directory or not. But stat() dereferences symlinks, so this is probably not what you want. You should use lstat() instead to be compatible with the code for the other operating system. N.B., at least remove_directory() is not used anywhere in the code. Maybe it would be better to remove it (and the associated tests) rather than maintain unused code?" __label__bug L'animation de saut ne se joue plus Observé depuis le commit 5408043e00ffe89d1297926cb7f66205eb0166d3 "__label__enhancement Add nursery, trunk and incubator import scripts " __label__enhancement Switch to Native Git Client JGit has some severe issues on the performance side and feature side. Switching to native Git may solve these issues and might offer some extra useful features. __label__enhancement Dōbutsu no Mori +/e+ Support Dual e+ support for japanese version "__label__enhancement Uploaded file conversion status for .csv and .txt types. I'm having issues with getting the conversion status of the .csv and .txt types through representations endpoint and it always returns the status 'none' when the file conversion/upload has completed already. However if you call the info URL of the same representation, returns the status as 'pending' and repeating info URL call again turns the status to 'success'. Simply i have to call the info URL twice to force the 'success ' status. Hope someone would look into this." "__label__bug [TW-655] Problems with error processing in ""burndown"" subcommand _Alexei Romanoff on 2011-03-24T11:01:21Z says:_ I tried to use (at)burndown@ subcommand in task, but it made me unhappy:
       $ task burndown """" is not a valid date (m).  Expected format 'm/d/Y' 
      All burndown variants(daily, monthly, weekly) printed the same error message. I made a little research and discovered a strange piece of data in my ~/.task/completed.data file:
       [annotation_1300530386:""Ann1"" annotation_1300534480:""Started task"" annotation_1300552431:""AnnF"" annotation_1300552436:""Stopped task"" description:""broken task"" entry:""1300349994"" priority:""H"" project:""git"" start:""1300534480"" status:""completed"" uuid:""27e92610-bb69-91e5-5b84-1c114cba33b6""] 
      This completed task doesn't have (at)end:@ field by some reason, I don't know why. Removing of this weird task made me happy again:). I suppose, (at)task burndown@ should handle this case, like other task subcommands e.g. (at)timesheet@, (at)completed@" __label__bug root page가 아닌 경우 클릭하면 현재 선택된 페이지가 보이지 않는 문제 해결 "__label__bug System.AccessViolationException: my program test crash [See Online](https://logify.devexpress.com/r/d/GitHub/gISGQx5uTO-flHOU19MbnQLpT4MluaV5rce-zO5V0Xh8m-Y7JVYFGB8twBPCiksR0/LwmC5lSaHSLpU-8BLp1PIAmlrJhkzfyl0wQGz0aSTxCQ18dviEHkmPLdH2mA7oKX0/MzYseRpTMRRsLuVJLll2UY32kQfYLJH_oHRTDQTGZnA1) Property | Value -------- | ----- **Application** | ConsoleApplication5 **Version** | 1.0.1.0 **Exception** | System.AccessViolationException **Message** | my program test crash **Stack**: ```ConsoleApplication5.Program.Main(String[] args) System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() System.Threading.ThreadHelper.ThreadStart_Context(Object state) System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) System.Threading.ThreadHelper.ThreadStart() ```" __label__enhancement Checkbox Plugin Support Add support for: https://developers.facebook.com/docs/messenger-platform/discovery/checkbox-plugin Especially `user_ref` property needs to be handled properly. __label__enhancement Add extension method: GetIdentification This extension method (for a web driver) should return an instance of browser identification. It should attempt a cast to the capabilities type and then use identification factory. It should return a special singleton instance representing an unidentified browser if it cannot identify the browser. __label__bug Fit the text chat in audio call view On smaller screen resolution devices such as a laptop the during the audio call the user opens text chat and the text chat window and send button don't fit into the screen and a vertical scrollbar is initialized. Try to fit the text chat controls into the screen without showing a vertical scrollbar when the vertical screen resolution is equal or bigger than 768px. Show the vertical scrollbar when the screen resolution is smaller. We can make the audio signal visualization smaller at the top of the audio call view to have more space for the text chat controls. "__label__bug PayPal Buttons JS error: TypeError: action is undefined A customer's site is generating a JavaScript error when the PayPal Buttons integration is enabled. ``` TypeError: action is undefined ``` This is appearing when a modal window is being launched after adding a WooCommerce product to the cart, provided by another WooCommerce related plugin: Because of the JS error, the ""no thanks"" and `x` links cannot be clicked. The specific line referenced in the HTML source is coming from our PayPal integration: ``` `if ( ! action.match( paypalMatch ) ) {` ``` Ticket: https://secure.helpscout.net/conversation/508945591/74456?folderId=205527 " "__label__bug Resuming form responses results in ""Cannot GET /client-v3/shell/undefined"" Current version: v3.x.x Upgraded from: NA Issue on tablet and/or server: Tablet ## Expected behavior When resuming a form response, we expect the corresponding form to load. ## Actual behavior Looks like the URL is malformed. Index in URL is -1. ![screen shot 2018-01-22 at 12 25 07 pm](https://user-images.githubusercontent.com/156575/35234597-bb67878e-ff6f-11e7-94d2-c2c1dcd3c0f9.png) ## Steps to reproduce the behavior Run `./develop.sh` to get the docker container going, go to http://localhost/client-v3/, register, start a form, return to the locatin's menu, try to resume that response. " __label__bug [bug] app1 bug app1 hungup. __label__enhancement Add automatic module name of `retrofit2`! __label__bug Toggling of shown stats # Expected Behavior Clicking on entry in drop down should toggle showing of stat on top bar # Current Behavior Clicking on entry just shows stat with no way to remove __label__enhancement Opening an Interactive App in Dashboard opens new tab If you click and Interactive App from the Dashboard navbar it will open a new tab. This is not necessary as Interactive Apps are run within the Dashboard. Although opening the form in a new tab may be useful for the Developer View's details page. "__label__bug Core dump on Pulse pa_threaded_mainloop_get_api MPD 0.20.15 Pulseaudio 11.1 ``` Jan 29 11:24 : exception: bind to '0.0.0.0:6600' failed (continuing anyway, because binding to '[::]:6600' succeeded): Failed to bind socket: Address already in use Jan 29 11:24 : exception: Failed to access /home/ldiamond/.config/mpd/playlists: No such file or directory Jan 29 11:24 : output: No 'AudioOutput' defined in config file Jan 29 11:24 : output: Attempt to detect audio output device Jan 29 11:24 : output: Attempting to detect a alsa audio device ALSA lib pcm_dmix.c:1099:(snd_pcm_dmix_open) unable to open slave Jan 29 11:24 : alsa_output: Error opening default ALSA device: Device or resource busy Jan 29 11:24 : output: Attempting to detect a oss audio device Jan 29 11:24 : oss_output: Error opening OSS device ""/dev/dsp"": No such file or directory Jan 29 11:24 : oss_output: Error opening OSS device ""/dev/sound/dsp"": No such file or directory Jan 29 11:24 : output: Attempting to detect a pulse audio device Assertion 'm' failed at pulse/thread-mainloop.c:241, function pa_threaded_mainloop_get_api(). Aborting. Jan 29 11:24 : fatal_error: MPD died from signal 6 (core dumped) ```" __label__bug Ignore cancelled PIREPs in duplicate check "__label__bug Pasting to an empty document and then undoing results in an error #### Do you want to request a *feature* or report a *bug*? Bug #### What's the current behavior? When pasting anything to an empty document and then undoing, an error occurs: ``` Uncaught Error: Invalid `key` argument! It must be a key string, but you passed: null at assertKey (https://npmcdn.com/slate@0.31.5/dist/slate.js:14526:9) at Document.getFurthestAncestor (https://npmcdn.com/slate@0.31.5/dist/slate.js:13109:13) at Document.object.(anonymous function) [as getFurthestAncestor] (https://npmcdn.com/slate@0.31.5/dist/slate.js:19604:30) at Document.getSelectionIndexes (https://npmcdn.com/slate@0.31.5/dist/slate.js:13818:26) at Content.render (https://npmcdn.com/slate-react@0.10.20/dist/slate-react.js:8786:30) ``` Issue can be reproduced on the default fiddle: [https://jsfiddle.net/fj9dvhom/1/](https://jsfiddle.net/fj9dvhom/1/) Here is a gif: [https://imgur.com/a/FWwGo](https://imgur.com/a/FWwGo) #### What's the expected behavior? Undo should work without any errors " "__label__enhancement [TW-104] recurring:worknights _Robert Daeley says:_ It would be exceedingly cool to have a recurrence period of ""worknights,"" which would represent nights before normal workdays, i.e. Sun-Thu (distinct from ""weekdays"", M-F). There are tasks that I need to have recur on evenings before days I work. Another way to think of it would be ""school nights"" - the stuff a student has to do on the nights before school days." "__label__enhancement Alpha headers need to be changed to Beta Change the Alpha headers so that they say Beta instead. This is probably easily changed in one file, otherwise a find and replace is needed." __label__enhancement Add precondition handlers to JMS and AMQP Need to add support for some middleware handlers to enable e.g. authentication and authorisation outside of actual service invocation. Similarly to multiple handlers on the same route in vert.x "__label__enhancement Code Maintenance The current code is written in a single file (1,280 lines currently), which is soon going to unmanageable and unsanitary. I think it should be modular in nature, separated out into modules for their specific purpose. For example: * Separating printing to console methods in `helpers.py` (or, printer.py). * Separation of `interactive` mode feature into `interactive.py`. * Separation of `users` info feature into `users.py`. * Separation of most of the global variables in `constants.py` (or, config.py) * Moreover, keeping `socli.py` as for the main entry point purpose parsing the arguments and calling the necessary methods from different modules. This will provide a cleaner approach to the developers to read, understand and debug code in the long run. Also, the code doesn't follow any Python coding standards which is really disturbing. No offence :P." "__label__enhancement Monte Carlo GUI needs implementation Actual form is implemented using ui file. Needs logic. For MC script, only get_parameters etc must be called" "__label__bug Text rendering does not perform HTML escaping This is a big security risk, that should be fixed for text rendering. A new object org.domino.HTMLEscape should be added in domino-core, with an apply method that escapes the incoming content. Nodes should transform their output using this function." __label__bug macOS dashboard build is broken This appears to be the effect of #43 __label__enhancement remove global variable remove the use of the global variable __label__enhancement Need to add Ant design library for front end development "__label__bug Help tutorial positioning incorrect *Sent by [**seattleandrew@gmail.com**](mailto:seattleandrew@gmail.com)* Description: --- As the tutorial is highlighting different features and how they work they are highlighting the incorrect areas on my GS8 Device info: ---
      App version4.2r
      App version code13
      Android build versionG950USQS2BQL1
      Android release version7.0
      Android SDK version24
      Android build IDNRD90M.G950USQS2BQL1
      Device brandsamsung
      Device manufacturersamsung
      Device namedreamqltesq
      Device modelSM-G950U
      Device product namedreamqltesq
      Device hardware nameqcom
      ABIs[arm64-v8a, armeabi-v7a, armeabi]
      ABIs (32bit)[armeabi-v7a, armeabi]
      ABIs (64bit)[arm64-v8a]
      Extra info: ---
      Pro Version?true
      " "__label__enhancement findFirst / findLast association methods Given that a post `hasMany` comments, add these methods: ``` post.firstComment(); Shortcut to model(""comment"").findFirst(where=""post_id = #post.id#""); ``` ``` post.lastComment(); Shortcut to model(""comment"").findLast(where=""post_id = #post.id#""); ``` " "__label__bug spotify.player.pause() fail on raspberry pi I'm trying to implement node-spotify on a Linux raspberry pi (raspbian) 3.12.35+ #730 armv6l. When I call spotify.player.pause(), the music stop. But then, It's impossible to continue to play the current track or to play a new track. The same code works perfectly on Ubuntu 14.04. I use the Spotify player, not the NodeJs player. " __label__bug motion-cocoapods + `.bundle` + `.resources` https://github.com/jgritman/motion-pods-test "__label__enhancement Unregister-... I am glad to see that both Register-AzsGuestDirectoryTenant and Register-AzsWithMyDirectoryTenant are working. However, we have a scenario where in we need to UnRegister both (e.g. service provider is severing their relationship with an existing tenant). How can this be done?" "__label__enhancement Support passing composed components in an object instead of a list Enable using the `composed` function like this: ```javascript const CounterWithTimer = compose({ myCounter: Counter, timeElapsed: Timer, }); {({ myCounter, timeElapsed }) => ( {/* ... */} )} ``` Or alternatively the `Composed` component like this: ```javascript {({ clicks, ticks, position }) => ( {/* ... */} )} ``` This allows the render prop function to expect a single `props` argument instead of a list of positional arguments. If implemented, this should not replace the current way this utility works. Passing the components to compose as a list, and having the render prop function receive a list of positional arguments is still the preferred way to use this functionality." "__label__enhancement Make it more obvious that the groups dropdown is for filtering participants _From @pameck on March 31, 2016 10:43_ _Copied from original issue: rabblerouser/rabblerouser-core-fork#11_ " "__label__enhancement IK stage compute inverse kinematics, parameters: - IK solver (namespace?) - group name - link frame (tip of group, optional?) - goal frame - number of attempts - caching of found solutions - solver-specific parameters Idea is to factor our IK stuff in current generateGraspPose, make it more configurable (choose and configure IK solver) etc." "__label__enhancement PSCi re-export handling needs some work Currently re-exported values will not be autocompleted in psci. I'm not exactly sure what the behaviour here should be, I guess it should behave as if they were defined within the module the import is being attempted for. This can probably be solved by some use of the `Env` from `Sugar.Names`, but I'm also considering doing some work so re-exports will be elaborated as values in the module's exports lists directly, as I think all round this will result in easier re-export handling. " "__label__bug ERROR golem Service Error: Traceback (most recent call last): builtins.TypeError: '<' not supported between instances of 'NoneType' and 'float' Windows, binaries b0.11.0 ``` 2018-01-24 04:12:17 ERROR golem.ethereum Ethereum RPC: {'code': -32000, 'message': 'missing trie node e4d94740b39761854e7ced6230dd20363cd69041e77a3a3c3f39b465a9fa193d (path 0903010a)'} 2018-01-24 04:12:17 ERROR golem Service Error: Traceback (most recent call last): builtins.TypeError: '<' not supported between instances of 'NoneType' and 'float' 2018-01-24 04:12:23 ERROR golem.transactions.ethereum.ethereumincomeskeeper Transaction not present in blockchain: '2513e29bbc5d15a2ae8d55ecaf4edc3afb4fb8823f2510a0f556f9a3fcd7dfb5'```" __label__bug The cache needs to take the http method into account __label__enhancement Added option to change font style is there any way to add option to change font style? "__label__bug multiple tooltip divs added and shown If there are multiple word clouds on a page, then multiple `
      ` elements get added to the page. Also the bubble chart tooltip show up on the bottom left of every page :-(" "__label__bug Comment out default value for docker-repo https://github.com/Azure/aztk/blob/c12ecebad239b9d01604f81ae57e38738fa36237/config/cluster.yaml#L18 This value should be commented out. Logic is already in place to select a default docker-repo, which this setting will override. This makes the default experience broken for GPUs. If a user just runs `aztk spark init` and `aztk spark create cluster --vm-size nc6`, the image downloaded will not be a GPU image because the value in cluster.yaml overrides the logic that selects the gpu image. " "__label__bug Issues list, markup bug " __label__enhancement Move .flowconfig to src __label__question Display Number with no Scrolling - Cascaded LED Matrix MAX7219 Raspbian Jessie on Raspberry Pi 3. Python 2.7 I have a cascade of 4 max7219 matrix (each is 8x8 LEDs). I simply want to display a number without any scrolling. Is this possible? "__label__bug Renaming to an Existing File Fails but Shows Success Message #### Expected Behavior Renaming an Existing File to the same Name as a File already in the Directory causes the User to receive an Error Message. #### Actual Behavior Renaming an Existing File to the same Name as a File already in the Directory causes the action to fail with a message appearing which states 'Successfully renamed'. #### How to Reproduce 1. Launch Dir 1.5.2.3 on Android 8.1.0 2. Navigate to a Directory with 2 Files in it 3. Select and Hold a File to Select 4. Select the Operations button in Upper Right 5. Select Rename 6. Enter the same Name as the other File 7. Select OK --- Device: Pixel 2 XL OS: Android 8.1.0 App Version: 1.5.2.3 --- #### Recording of the Bug ![RenameSameFail.gif](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516823945/n99neadopegwrnbwjxvh.gif)

      Posted on Utopian.io - Rewarding Open Source Contributors
      " "__label__enhancement Criteria 8 comunity usage indicats that we query tess bio.tools bioweb to know how many ressource have bee, labeled with the given element" __label__question Using flow over `propTypes` The contributing guide as well as the current files use and mention propTypes. Is that going to be our preferred approach or shall we favour Flow types instead? "__label__question issue in routing. I am facing the issue, when I try to route on other component. I create a new component (citycomponent) and adding the routing path in app-routing.module.ts file. this is my route file import { CityComponent } from './../city/city.component'; import { StarterComponent } from './../starter/starter.component'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; @NgModule({ imports: [ RouterModule.forRoot([ { path: '', redirectTo: 'starter', pathMatch: 'full' }, { path: 'starter', component: StarterComponent }, { path: 'city', component: CityComponent } ]) ], declarations: [], exports: [ RouterModule] }) export class AppRoutingModule { } and i also add router-outlet tag in my starter.component.html file. this is the starter.component.html..

      Page Header Optional description

      1. Level
      2. Here
      and I add my routerLink in starter-left-side.component.html. but when i click on my router link it will not properly routed on my component. " "__label__enhancement Add bouncing to pickups When a crate is destroyed, add velocity depending on the side the crate was hit, and bounce momentarily before stopping. " "__label__bug Builder srv components init hook doesn't respect port binding The init hooks for jobsrv, sessionsrv and originsrv didn't include the bound datastore port in the init hooks, resulting in a failure when `builder-datastore` runs on a port other than the psql default." __label__enhancement [TW-937] Add helper command which lists available commands with descriptions _Johannes Schlatow on 2010-12-26T05:59:15Z says:_ This will improve the command completion in zsh that is able to display descriptions of the suggested completions. I propose the following:
       $ task _zshcommands add:Adds a new task. log:Adds a new task that is already completed. append:Appends more description to an existing task. ... 
      "__label__bug jsx automatic brace insertion does not work if you have already started typing attribute value TS Version: 2.7.1 **Search Terms:** - jsx - insertText - brace attribute **Code** ```ts const onClick = () => { };