Joe
Joe
A map node changes size under certain conditions when auto-refresh is enabled: Zoom in on it. Select it. Wait for an auto-refresh tick. Zoom out. The node changes size incorrectly....
The AWS importer was broken by the new importer format. It needs to updated to the new importer format and to include timestamps. https://github.com/riolet/SAM/blob/master/import_aws.py
When fully zoomed in (at host level) there are sometimes issues in the rendering of circles and arrows. Problems have been observed in Firefox on Linux, and Opera (chromium) on...
the map's port filter accepts strings and the server produces errors when casting to integer.
The issue is with multiple `elif` statements, if a previous statement has already run. The following will generate erroneous output: ``` x = 1 y = 1 x == 1...
Parentheses are observed but otherwise order of operations is right to left. Therefor: ``` a = 3+3*3+3 b = (3+3)*3+3 ``` result in: ``` a == 21 b == 36...
The following notation is unrecognized ``` f1 = .5 ``` Expected result: ``` f1 = 0.500000 ```
All of the following compile to invalid C code. ``` a = -1 b = -1.0 c = 13 + -5 ``` Specifically, ``` a = 1 b = 2...