aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/js (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-08-02jsrrdgraph: Remove unused getStringAt, move implementationPeter Wu1-48/+43
Rename switch_endian to littleEndian to be more explicit (the meaning is now inversed too). Make getEndianByteAt private since it is an implementation detail. Drop getStringAt as this is not used in this library. Move getCharAt above getCStringAt since they are more related. Move the methods definition for the current implementation to a new function.
2014-08-02jsrrdgraph: Drop iDataOffset and iDataLength parametersPeter Wu1-11/+9
These parameters are not used in this library. Should it ever be necessary to process a slice of data, then the caller should do so.
2014-08-02jsrrdgraph: document.write is for dinosaursPeter Wu1-1/+3
Use conditional compilation for the antique browsers that provide VBScript support.
2014-08-02jsrrdgraph: Performance fixPeter Wu1-6/+9
commit 2a74a333ff143499b465234f0395a4aad7bdaa78 ("Upgrade to javascriptrrd ver 1.1.1") converted getByteAt calls to a getEndianByteAt call, but this also introduced a branch operation. Since endianess is dependent on the file, we can move the switch_endian check outside the function. Performance improved from 0.148ms (n=336k) to .039ms (n=384k) which translates to about 30 seconds!
2014-08-02jsrrdgraph: binaryXHR: jshint style fixesPeter Wu1-257/+264
Added jshint comment on top, added "use strict". Added missing semi-colons, converted to '===' (after validation). Added comment for `typeof strData == "unknown"`. Break one long line over two lines. There are no other changes except for whitespace and line ending changes. Check with `git diff -w`.
2014-08-02jsrrdgraph: Fixed jshint warnings/errorsPeter Wu13-218/+185
Many fall in the category missing semicolon, but there are legitimate bugs (like throwing an error with an undefined variable, using isInfinite instead of !isFinite or fabs instead of Math.abs). At some places, I moved the variable declarations to avoid duplicate definition warnings. Redundant breaks have been removed (after return / throw). Global variables were implicitly defined in RrdDataFile (which caught my attention) and Base64, these have been made local. Also fixed some whitespace errors. Yay, the consistency. Not all (style) issues are fixed.
2014-07-25jsrrdgraph: Fix get reponseText in FetchBinaryURLManuel Luis Sanmartín Rozada1-1/+1
2014-07-25jsrrdgraph: Upgrade to javascriptrrd ver 1.1.1Manuel Luis Sanmartín Rozada2-85/+143
2014-07-25jsrrdgraph: Fix ident. Thanks to PoilManuel Luis Sanmartín Rozada1-3/+3
2014-07-25jsrrdgraph: Check when this.gdes[i].legend is nullManuel Luis Sanmartín Rozada1-2/+7
2014-07-25jsrrdgraph: Fix textalign name typo. Thanks to PoilManuel Luis Sanmartín Rozada3-9/+9
2014-07-25jsrrdgraph: Fix flags parsing (options without a value)Peter Wu1-97/+92
Also fix some typos and white-space issues. Reported at https://github.com/pommi/CGP/issues/88
2014-07-20Defensive programming: more urlencode/htmlentitiesPeter Wu1-1/+1
Make build_url return an URL, not HTML. This separates presentation from data. plugin_header's return value is unused, remove the unnecessary return. At places where `printf("<tag att='%s'>", $x);` is used, it is now converted to `printf("<tag att=\"%s\">", htmlentities($x));` since the single quote is not escaped by default by htmlentities. In case the canvas style is used, JS should use `textContent` instead of `innerHTML` to avoid reading `&quot;` instead of `"`. Nobody (should) use(s) IE6 anymore, so it is a safe change. While at it, use the standard charset attribute of meta to specify the character set (UTF-8).
2014-07-05jsrrdgraph: RrdGraph.js: make HRULE support reference to variablePim van den Berg1-1/+3
The value of HRULE could be a reference to for example a VDEF variable. Closes #85
2014-06-28jsrrdgraph: Fix graph width to look like rrdtool.Manuel Luis Sanmartín Rozada1-2/+1
2014-06-28jsrrdgraph: Fix errors in second axis.Manuel Luis Sanmartín Rozada1-2/+2
2014-01-12Add a configuration option for sync/async choice for the canvas graphsVincent Brillault3-22/+42
2014-01-12jsrrdgraph: CGP.js: split draw(id) into prepare_draw(id) and draw(id)Vincent Brillault1-1/+7
2014-01-12jsrrdgraph: Change alter for thowManuel Luis Sanmartín Rozada1-4/+2
2014-01-12jsrrdgraph: RrdGraph.js: Add RrdGraph.prototype.graph_paint_async methodVincent Brillault1-0/+93
2014-01-12jsrrdgraph: RrdDataFile.js: Add async function (fetch_async) to RrdDataFileVincent Brillault1-0/+39
2014-01-12jsrrdgraph: RrdGraph.js: splitting RrdGraph.prototype.graph_paint into init, ↵Vincent Brillault1-3/+13
fetch and draw
2014-01-12jsrrdgraph: RrdGraph.js: fix some indentationVincent Brillault1-4/+4
2014-01-12jsrrdgraph: RrdDataFile.js: splitting fetch into fetch & buildVincent Brillault1-10/+15
2014-01-12jsrrdgraph: RrdDataFile.js: fix space/tabulationVincent Brillault1-21/+21
2013-05-18jsrrdgraph: RrdGraph.js: gprint: fix check for undefined format in case of vdefPim van den Berg1-1/+1
The GPRINT of a VDEF doesn't have a CF. For example: > "GPRINT:avg:LAST:%5.1lf%s Last" > "GPRINT:tot:%5.1lf%s Total\l" The format will be passed via the cf variable, so format is not defined. But it didn't show up in the legend. Firebug showed variable format isn't undefined, but an empty string in case of VDEF. So just check for falsy.
2013-05-18integrate jsrrdgraph in CGPPim van den Berg1-0/+124
2013-05-13jsrrdgraph: RrdGraph.js: fix undefined 2nd argument of RrdVdef functionPim van den Berg1-1/+1
This fixes this error: > TypeError: Cannot call method 'indexOf' of undefined at new RrdVdef
2013-05-10import js directory from jsrrdgraph for client side graph renderingPim van den Berg15-0/+7984
Source: https://github.com/manuelluis/jsrrdgraph@276b880