Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | [WebUI] Fix "auth" request URL | Alexander Moisseev | 2018-08-02 | 1 | -1/+1 | |
|/ | | | | Fixes: #2390 | |||||
* | [Minor] Use queryServer function for "neighbours" request | Alexander Moisseev | 2018-08-01 | 1 | -32/+23 | |
| | ||||||
* | [Minor] Add "errorOnceId" parameter to query function | Alexander Moisseev | 2018-07-30 | 3 | -22/+19 | |
| | ||||||
* | [Minor] Add "errorMessage" parameter to query function | Alexander Moisseev | 2018-07-30 | 5 | -30/+10 | |
| | ||||||
* | [Minor] Fix save map on cluster messages | Alexander Moisseev | 2018-07-29 | 1 | -3/+8 | |
| | ||||||
* | [Minor] Refactor query function to use named parameters | Alexander Moisseev | 2018-07-28 | 6 | -180/+222 | |
| | ||||||
* | [WebUI] Save symbols to the selected server | Alexander Moisseev | 2018-07-28 | 1 | -7/+13 | |
| | | | | instead of local | |||||
* | [Minor] Use query function to get and update symbols | Alexander Moisseev | 2018-07-28 | 2 | -29/+23 | |
| | ||||||
* | [Minor] Use query function to get actions, | Alexander Moisseev | 2018-07-27 | 2 | -20/+12 | |
| | | | | | get actions from "local" if "All SERVERS" option is selected, sort conditional operators by action index | |||||
* | [Minor] Remove obsolete HTTP request | Alexander Moisseev | 2018-07-27 | 1 | -13/+0 | |
| | ||||||
* | [Minor] Allow to query specific host | Alexander Moisseev | 2018-07-26 | 4 | -13/+14 | |
| | | | | For now we need just `local` | |||||
* | [WebUI] Refactor query functions into one | Alexander Moisseev | 2018-07-25 | 6 | -221/+190 | |
| | ||||||
* | [WebUI] Fix query URL for selected server | Alexander Moisseev | 2018-07-24 | 1 | -2/+2 | |
| | ||||||
* | [WebUI] Use common query functions to get graph data | Alexander Moisseev | 2018-07-22 | 2 | -63/+49 | |
| | ||||||
* | [WebUI] Unify arguments of query functions | Alexander Moisseev | 2018-07-22 | 1 | -1/+2 | |
| | ||||||
* | [WebUI] Do not execute `on_success` callback | Alexander Moisseev | 2018-07-22 | 1 | -14/+11 | |
| | | | | if all requests to neighbours failed | |||||
* | [WebUI] Use common query functions to save symbols | Alexander Moisseev | 2018-07-21 | 1 | -26/+13 | |
| | ||||||
* | [WebUI] Remove previously-attached event handlers | Alexander Moisseev | 2018-07-21 | 1 | -5/+7 | |
| | | | | from save buttons on the "Symbols" tab | |||||
* | [WebUI] Fix history reset for "All SERVERS" (#2346) | Alexander Moisseev | 2018-07-21 | 1 | -20/+12 | |
| | ||||||
* | [WebUI] Hide symbols order selector for legacy history | Alexander Moisseev | 2018-07-19 | 1 | -0/+4 | |
| | ||||||
* | [WebUI] Fix symbols display in legacy history, | Alexander Moisseev | 2018-07-19 | 1 | -1/+12 | |
| | | | | | | | compact symbols display, sort symbols by name Issue: #2348 | |||||
* | [Minor] Simplify conditional expression | Alexander Moisseev | 2018-07-15 | 1 | -5/+1 | |
| | ||||||
* | [Minor] Use consistent brace style for blocks (1tbs) | Alexander Moisseev | 2018-07-15 | 6 | -34/+17 | |
| | ||||||
* | [Minor] Avoid using empty blocks | Alexander Moisseev | 2018-07-15 | 1 | -3/+2 | |
| | ||||||
* | [Minor] Remove unused empty function | Alexander Moisseev | 2018-07-15 | 2 | -2/+0 | |
| | ||||||
* | [Minor] Do not use identifiers before their declarations | Alexander Moisseev | 2018-07-15 | 2 | -13/+12 | |
| | ||||||
* | [Minor] Do not reassign function parameters | Alexander Moisseev | 2018-07-15 | 1 | -4/+5 | |
| | ||||||
* | [Minor] Do not shadow variables | Alexander Moisseev | 2018-07-14 | 3 | -25/+24 | |
| | ||||||
* | [WebUI] Avoid unused indexes | Alexander Moisseev | 2018-07-13 | 1 | -2/+2 | |
| | ||||||
* | [WebUI] Enable strict mode, | Alexander Moisseev | 2018-07-12 | 8 | -68/+72 | |
| | | | | | rename `interface` oblect as it is a reserved keyword, declare $span and $tbody variables | |||||
* | [WebUI] Remove unused block | Alexander Moisseev | 2018-07-11 | 1 | -4/+0 | |
| | ||||||
* | [WebUI] Initialize variables at declaration | Alexander Moisseev | 2018-07-11 | 1 | -6/+2 | |
| | ||||||
* | [WebUI] Do not redeclare variables | Alexander Moisseev | 2018-07-11 | 2 | -4/+6 | |
| | ||||||
* | [WebUI] Use self-explanatory notation | Alexander Moisseev | 2018-07-11 | 3 | -7/+7 | |
| | | | | for type conversion | |||||
* | [WebUI] Use type-safe equality operators | Alexander Moisseev | 2018-07-11 | 5 | -19/+19 | |
| | ||||||
* | [Test] Specify JS Globals | Alexander Moisseev | 2018-07-08 | 6 | -2/+15 | |
| | ||||||
* | [WebUI] Remove unused variable | Alexander Moisseev | 2018-07-08 | 1 | -1/+0 | |
| | ||||||
* | [WebUI] Add missed declarations | Alexander Moisseev | 2018-07-08 | 2 | -7/+8 | |
| | ||||||
* | [WebUI] Fix variable assignment | Alexander Moisseev | 2018-07-08 | 1 | -1/+2 | |
| | | | | I think `var full = shrt = "";` is `var full = (shrt = "");` effectively, so `full = true`. | |||||
* | [WebUI] Avoid using "undefined" property | Alexander Moisseev | 2018-07-08 | 3 | -10/+10 | |
| | | | | of the global object | |||||
* | [WebUI] Remove unused variables | Alexander Moisseev | 2018-07-06 | 4 | -8/+6 | |
| | ||||||
* | [Minor] JS: Remove redundant quotes | Alexander Moisseev | 2018-07-06 | 7 | -265/+265 | |
| | | | | around object literal property names | |||||
* | [Minor] JS: Add space before parentheses | Alexander Moisseev | 2018-07-05 | 8 | -62/+62 | |
| | | | | of anonymous functions | |||||
* | [Minor] JS: Align elements | Alexander Moisseev | 2018-07-05 | 1 | -1/+2 | |
| | ||||||
* | [WebUI] Remove duplicated path from RequireJS config | Alexander Moisseev | 2018-07-05 | 1 | -1/+0 | |
| | ||||||
* | [Minor] JS: Remove useless escape | Alexander Moisseev | 2018-07-05 | 1 | -1/+1 | |
| | ||||||
* | [Minor] JS: Remove useless concatenation | Alexander Moisseev | 2018-07-05 | 1 | -2/+2 | |
| | ||||||
* | [Minor] JS: Simplify conditional | Alexander Moisseev | 2018-07-05 | 1 | -5/+3 | |
| | ||||||
* | [Minor] JS: Disable "no-alert" rule for a line | Alexander Moisseev | 2018-07-05 | 1 | -1/+1 | |
| | ||||||
* | [WebUI] Do not accept passwords containing control characters | Alexander Moisseev | 2018-07-05 | 1 | -1/+1 | |
| |