├── .gitignore ├── AUTHORS ├── COPYING ├── Makefile.am ├── README ├── autogen.sh ├── configure.ac ├── data ├── 60-openglucose.rules └── insulinx │ ├── export.csv │ ├── parser.py │ ├── plug.log │ ├── set-12h-clock.log │ ├── set-built-in-img.log │ ├── set-custom-img.log │ └── sync-time.log ├── jqplot ├── MIT-LICENSE.txt ├── README.txt ├── changes.txt ├── copyright.txt ├── docs │ ├── files │ │ ├── MIT-LICENSE-txt.html │ │ ├── changes-txt.html │ │ ├── gpl-2-0-txt.html │ │ ├── images │ │ │ ├── background.jpg │ │ │ ├── basicline.png │ │ │ ├── basiclogaxis.png │ │ │ ├── basiclogoptions.png │ │ │ ├── basicoptions.png │ │ │ ├── dualaxis.png │ │ │ ├── logo.jpg │ │ │ ├── navdocs.png │ │ │ ├── navdocsover.png │ │ │ ├── navdownload.png │ │ │ ├── navdownloadover.png │ │ │ ├── navexamples.png │ │ │ ├── navexamplesover.png │ │ │ ├── navhome.png │ │ │ ├── navhomeover.png │ │ │ ├── new.png │ │ │ ├── sample3.png │ │ │ └── samplesm.png │ │ ├── jqPlotCssStyling-txt.html │ │ ├── jqPlotOptions-txt.html │ │ ├── jqplot-axisLabelRenderer-js.html │ │ ├── jqplot-axisTickRenderer-js.html │ │ ├── jqplot-canvasGridRenderer-js.html │ │ ├── jqplot-core-js.html │ │ ├── jqplot-divTitleRenderer-js.html │ │ ├── jqplot-lineRenderer-js.html │ │ ├── jqplot-linearAxisRenderer-js.html │ │ ├── jqplot-markerRenderer-js.html │ │ ├── jqplot-shadowRenderer-js.html │ │ ├── jqplot-shapeRenderer-js.html │ │ ├── jqplot-themeEngine-js.html │ │ ├── jqplot-toImage-js.html │ │ ├── optionsTutorial-txt.html │ │ ├── plugins │ │ │ ├── jqplot-BezierCurveRenderer-js.html │ │ │ ├── jqplot-barRenderer-js.html │ │ │ ├── jqplot-blockRenderer-js.html │ │ │ ├── jqplot-bubbleRenderer-js.html │ │ │ ├── jqplot-canvasAxisLabelRenderer-js.html │ │ │ ├── jqplot-canvasAxisTickRenderer-js.html │ │ │ ├── jqplot-canvasOverlay-js.html │ │ │ ├── jqplot-categoryAxisRenderer-js.html │ │ │ ├── jqplot-ciParser-js.html │ │ │ ├── jqplot-cursor-js.html │ │ │ ├── jqplot-dateAxisRenderer-js.html │ │ │ ├── jqplot-donutRenderer-js.html │ │ │ ├── jqplot-dragable-js.html │ │ │ ├── jqplot-enhancedLegendRenderer-js.html │ │ │ ├── jqplot-funnelRenderer-js.html │ │ │ ├── jqplot-highlighter-js.html │ │ │ ├── jqplot-logAxisRenderer-js.html │ │ │ ├── jqplot-mekkoAxisRenderer-js.html │ │ │ ├── jqplot-mekkoRenderer-js.html │ │ │ ├── jqplot-meterGaugeRenderer-js.html │ │ │ ├── jqplot-ohlcRenderer-js.html │ │ │ ├── jqplot-pieRenderer-js.html │ │ │ ├── jqplot-pointLabels-js.html │ │ │ ├── jqplot-pyramidAxisRenderer-js.html │ │ │ ├── jqplot-pyramidGridRenderer-js.html │ │ │ ├── jqplot-pyramidRenderer-js.html │ │ │ └── jqplot-trendline-js.html │ │ └── usage-txt.html │ ├── index.html │ ├── index │ │ ├── Classes.html │ │ ├── Files.html │ │ ├── Functions.html │ │ ├── General.html │ │ ├── General2.html │ │ ├── General3.html │ │ ├── General4.html │ │ ├── General5.html │ │ ├── General6.html │ │ ├── General7.html │ │ ├── Hooks.html │ │ ├── Properties.html │ │ ├── Properties2.html │ │ ├── Properties3.html │ │ ├── Properties4.html │ │ ├── Properties5.html │ │ └── Properties6.html │ ├── javascript │ │ ├── main.js │ │ └── searchdata.js │ ├── search │ │ ├── ClassesA.html │ │ ├── ClassesD.html │ │ ├── ClassesG.html │ │ ├── ClassesH.html │ │ ├── ClassesJ.html │ │ ├── ClassesL.html │ │ ├── ClassesS.html │ │ ├── ClassesSymbols.html │ │ ├── ClassesT.html │ │ ├── ClassesV.html │ │ ├── FilesJ.html │ │ ├── FunctionsC.html │ │ ├── FunctionsD.html │ │ ├── FunctionsG.html │ │ ├── FunctionsI.html │ │ ├── FunctionsM.html │ │ ├── FunctionsN.html │ │ ├── FunctionsQ.html │ │ ├── FunctionsR.html │ │ ├── FunctionsS.html │ │ ├── FunctionsZ.html │ │ ├── GeneralA.html │ │ ├── GeneralB.html │ │ ├── GeneralC.html │ │ ├── GeneralD.html │ │ ├── GeneralE.html │ │ ├── GeneralF.html │ │ ├── GeneralG.html │ │ ├── GeneralH.html │ │ ├── GeneralI.html │ │ ├── GeneralJ.html │ │ ├── GeneralL.html │ │ ├── GeneralM.html │ │ ├── GeneralN.html │ │ ├── GeneralO.html │ │ ├── GeneralP.html │ │ ├── GeneralQ.html │ │ ├── GeneralR.html │ │ ├── GeneralS.html │ │ ├── GeneralSymbols.html │ │ ├── GeneralT.html │ │ ├── GeneralU.html │ │ ├── GeneralV.html │ │ ├── GeneralW.html │ │ ├── GeneralX.html │ │ ├── GeneralY.html │ │ ├── GeneralZ.html │ │ ├── HooksA.html │ │ ├── HooksE.html │ │ ├── HooksJ.html │ │ ├── HooksP.html │ │ ├── NoResults.html │ │ ├── PropertiesA.html │ │ ├── PropertiesB.html │ │ ├── PropertiesC.html │ │ ├── PropertiesD.html │ │ ├── PropertiesE.html │ │ ├── PropertiesF.html │ │ ├── PropertiesG.html │ │ ├── PropertiesH.html │ │ ├── PropertiesI.html │ │ ├── PropertiesL.html │ │ ├── PropertiesM.html │ │ ├── PropertiesN.html │ │ ├── PropertiesO.html │ │ ├── PropertiesP.html │ │ ├── PropertiesR.html │ │ ├── PropertiesS.html │ │ ├── PropertiesT.html │ │ ├── PropertiesU.html │ │ ├── PropertiesV.html │ │ ├── PropertiesW.html │ │ ├── PropertiesX.html │ │ ├── PropertiesY.html │ │ └── PropertiesZ.html │ └── styles │ │ ├── 1.css │ │ ├── 2.css │ │ └── main.css ├── examples │ ├── KCPsample4.csv │ ├── ages.json │ ├── ajax-loader.gif │ ├── area.html │ ├── axisLabelTests.html │ ├── axisLabelsRotatedText.html │ ├── axisScalingForceTickAt.html │ ├── bandedLine.html │ ├── bar-charts.html │ ├── barLineAnimated.html │ ├── barTest.html │ ├── bezierCurve.html │ ├── blockPlot.html │ ├── bubble-plots.html │ ├── bubbleChart.html │ ├── candlestick-charts.html │ ├── candlestick.html │ ├── canvas-overlay.html │ ├── colorpicker │ │ ├── images │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ └── ui-colorpicker.png │ │ ├── index.html │ │ ├── jquery.colorpicker.css │ │ └── jquery.colorpicker.js │ ├── cursor-highlighter.html │ ├── customHighlighterCursorTrendline.html │ ├── dashboardWidget.html │ ├── dashedLines.html │ ├── data-renderers.html │ ├── date-axes.html │ ├── dateAxisLogAxisZooming.html │ ├── dateAxisRenderer.html │ ├── draw-rectangles.html │ ├── example.js │ ├── example.min.js │ ├── examples.css │ ├── examples.min.css │ ├── fillBetweenLines.html │ ├── hiddenPlotsInTabs.html │ ├── images │ │ ├── bar-alpha.png │ │ ├── bar-opacity.png │ │ ├── bar-pointer.png │ │ ├── bar.png │ │ ├── logo.jpg │ │ ├── map-opacity.png │ │ ├── map-pointer.png │ │ ├── map.png │ │ ├── preview-opacity.png │ │ └── ui-colorpicker.png │ ├── index.html │ ├── jquery-ui │ │ ├── css │ │ │ ├── smoothness │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.min.css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.9pre.css │ │ │ │ ├── jquery-ui-1.9pre.min.css │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.min.css │ │ └── js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.effects.blind.min.js │ │ │ └── jquery.effects.core.min.js │ ├── jsondata.txt │ ├── kcp.print.js │ ├── kcp_area.html │ ├── kcp_area2.html │ ├── kcp_cdf.html │ ├── kcp_engel.html │ ├── kcp_lorenz.html │ ├── kcp_pdf.html │ ├── kcp_pyramid.html │ ├── kcp_pyramid2.html │ ├── kcp_pyramid_by_age.html │ ├── kcp_pyramid_by_age.php │ ├── kcp_quintiles.html │ ├── line-charts.html │ ├── mekkoCharts.html │ ├── meterGauge.html │ ├── multipleBarColors.html │ ├── nav.inc │ ├── pie-donut-charts.html │ ├── pieTest.html │ ├── pieTest2.js │ ├── pieTest4.html │ ├── point-labels.html │ ├── quintiles.json │ ├── resizablePlot.html │ ├── rotated-tick-labels.html │ ├── rotatedTickLabelsZoom.html │ ├── selectorSyntax.html │ ├── smoothedLine.html │ ├── syntaxhighlighter │ │ ├── LGPL-LICENSE │ │ ├── MIT-LICENSE │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shAutoloader.min.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJScript.min.js │ │ │ ├── shBrushXml.js │ │ │ ├── shBrushXml.min.js │ │ │ ├── shCore.js │ │ │ └── shCore.min.js │ │ └── styles │ │ │ ├── shCore.css │ │ │ ├── shCore.min.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDefault.min.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDefault.min.css │ │ │ ├── shThemejqPlot.css │ │ │ └── shThemejqPlot.min.css │ ├── theming.html │ ├── topbanner.inc │ ├── waterfall.html │ ├── waterfall2.html │ ├── yahooData.js │ ├── yahooData.min.js │ ├── zoom1.html │ ├── zoomOptions.html │ ├── zoomProxy.html │ └── zooming.html ├── excanvas.js ├── excanvas.min.js ├── gpl-2.0.txt ├── jqPlotCssStyling.txt ├── jqPlotOptions.txt ├── jquery.jqplot.css ├── jquery.jqplot.js ├── jquery.jqplot.min.css ├── jquery.jqplot.min.js ├── jquery.js ├── jquery.min.js ├── optionsTutorial.txt ├── plugins │ ├── jqplot.BezierCurveRenderer.js │ ├── jqplot.BezierCurveRenderer.min.js │ ├── jqplot.barRenderer.js │ ├── jqplot.barRenderer.min.js │ ├── jqplot.blockRenderer.js │ ├── jqplot.blockRenderer.min.js │ ├── jqplot.bubbleRenderer.js │ ├── jqplot.bubbleRenderer.min.js │ ├── jqplot.canvasAxisLabelRenderer.js │ ├── jqplot.canvasAxisLabelRenderer.min.js │ ├── jqplot.canvasAxisTickRenderer.js │ ├── jqplot.canvasAxisTickRenderer.min.js │ ├── jqplot.canvasOverlay.js │ ├── jqplot.canvasOverlay.min.js │ ├── jqplot.canvasTextRenderer.js │ ├── jqplot.canvasTextRenderer.min.js │ ├── jqplot.categoryAxisRenderer.js │ ├── jqplot.categoryAxisRenderer.min.js │ ├── jqplot.ciParser.js │ ├── jqplot.ciParser.min.js │ ├── jqplot.cursor.js │ ├── jqplot.cursor.min.js │ ├── jqplot.dateAxisRenderer.js │ ├── jqplot.dateAxisRenderer.min.js │ ├── jqplot.donutRenderer.js │ ├── jqplot.donutRenderer.min.js │ ├── jqplot.dragable.js │ ├── jqplot.dragable.min.js │ ├── jqplot.enhancedLegendRenderer.js │ ├── jqplot.enhancedLegendRenderer.min.js │ ├── jqplot.funnelRenderer.js │ ├── jqplot.funnelRenderer.min.js │ ├── jqplot.highlighter.js │ ├── jqplot.highlighter.min.js │ ├── jqplot.json2.js │ ├── jqplot.json2.min.js │ ├── jqplot.logAxisRenderer.js │ ├── jqplot.logAxisRenderer.min.js │ ├── jqplot.mekkoAxisRenderer.js │ ├── jqplot.mekkoAxisRenderer.min.js │ ├── jqplot.mekkoRenderer.js │ ├── jqplot.mekkoRenderer.min.js │ ├── jqplot.meterGaugeRenderer.js │ ├── jqplot.meterGaugeRenderer.min.js │ ├── jqplot.mobile.js │ ├── jqplot.mobile.min.js │ ├── jqplot.ohlcRenderer.js │ ├── jqplot.ohlcRenderer.min.js │ ├── jqplot.pieRenderer.js │ ├── jqplot.pieRenderer.min.js │ ├── jqplot.pointLabels.js │ ├── jqplot.pointLabels.min.js │ ├── jqplot.pyramidAxisRenderer.js │ ├── jqplot.pyramidAxisRenderer.min.js │ ├── jqplot.pyramidGridRenderer.js │ ├── jqplot.pyramidGridRenderer.min.js │ ├── jqplot.pyramidRenderer.js │ ├── jqplot.pyramidRenderer.min.js │ ├── jqplot.trendline.js │ └── jqplot.trendline.min.js └── usage.txt ├── m4 ├── compiler.m4 ├── linker.m4 ├── tp-compiler-flag.m4 ├── tp-compiler-warnings.m4 └── tp-linker-flag.m4 ├── openglucose.appdata.xml ├── openglucose.desktop └── src ├── average-chart.js ├── base-device.c ├── base-device.h ├── chart.html ├── device-widget.c ├── device-widget.h ├── dummy-device.c ├── dummy-device.h ├── insulinx.c ├── insulinx.h ├── main-window.c ├── main-window.h ├── main.c ├── modal-day-chart.js ├── openglucose.css ├── openglucose.gresource.xml ├── record.c └── record.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/configure.ac -------------------------------------------------------------------------------- /data/60-openglucose.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/60-openglucose.rules -------------------------------------------------------------------------------- /data/insulinx/export.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/export.csv -------------------------------------------------------------------------------- /data/insulinx/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/parser.py -------------------------------------------------------------------------------- /data/insulinx/plug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/plug.log -------------------------------------------------------------------------------- /data/insulinx/set-12h-clock.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/set-12h-clock.log -------------------------------------------------------------------------------- /data/insulinx/set-built-in-img.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/set-built-in-img.log -------------------------------------------------------------------------------- /data/insulinx/set-custom-img.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/set-custom-img.log -------------------------------------------------------------------------------- /data/insulinx/sync-time.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/data/insulinx/sync-time.log -------------------------------------------------------------------------------- /jqplot/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/MIT-LICENSE.txt -------------------------------------------------------------------------------- /jqplot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/README.txt -------------------------------------------------------------------------------- /jqplot/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/changes.txt -------------------------------------------------------------------------------- /jqplot/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/copyright.txt -------------------------------------------------------------------------------- /jqplot/docs/files/MIT-LICENSE-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/MIT-LICENSE-txt.html -------------------------------------------------------------------------------- /jqplot/docs/files/changes-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/changes-txt.html -------------------------------------------------------------------------------- /jqplot/docs/files/gpl-2-0-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/gpl-2-0-txt.html -------------------------------------------------------------------------------- /jqplot/docs/files/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/background.jpg -------------------------------------------------------------------------------- /jqplot/docs/files/images/basicline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/basicline.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/basiclogaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/basiclogaxis.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/basiclogoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/basiclogoptions.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/basicoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/basicoptions.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/dualaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/dualaxis.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/logo.jpg -------------------------------------------------------------------------------- /jqplot/docs/files/images/navdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navdocs.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navdocsover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navdocsover.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navdownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navdownload.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navdownloadover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navdownloadover.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navexamples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navexamples.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navexamplesover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navexamplesover.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navhome.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/navhomeover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/navhomeover.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/new.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/sample3.png -------------------------------------------------------------------------------- /jqplot/docs/files/images/samplesm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/images/samplesm.png -------------------------------------------------------------------------------- /jqplot/docs/files/jqPlotCssStyling-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqPlotCssStyling-txt.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqPlotOptions-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqPlotOptions-txt.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-axisLabelRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-axisLabelRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-axisTickRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-axisTickRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-canvasGridRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-canvasGridRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-core-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-core-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-divTitleRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-divTitleRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-lineRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-lineRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-linearAxisRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-linearAxisRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-markerRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-markerRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-shadowRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-shadowRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-shapeRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-shapeRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-themeEngine-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-themeEngine-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/jqplot-toImage-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/jqplot-toImage-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/optionsTutorial-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/optionsTutorial-txt.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-BezierCurveRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-BezierCurveRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-barRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-barRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-blockRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-blockRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-bubbleRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-bubbleRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-canvasAxisLabelRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-canvasAxisLabelRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-canvasOverlay-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-canvasOverlay-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-categoryAxisRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-categoryAxisRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-ciParser-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-ciParser-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-cursor-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-cursor-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-dateAxisRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-dateAxisRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-donutRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-donutRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-dragable-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-dragable-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-enhancedLegendRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-enhancedLegendRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-funnelRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-funnelRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-highlighter-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-highlighter-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-logAxisRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-logAxisRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-mekkoAxisRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-mekkoAxisRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-mekkoRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-mekkoRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-meterGaugeRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-meterGaugeRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-ohlcRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-ohlcRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-pieRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-pieRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-pointLabels-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-pointLabels-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-pyramidAxisRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-pyramidAxisRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-pyramidGridRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-pyramidGridRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-pyramidRenderer-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-pyramidRenderer-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/plugins/jqplot-trendline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/plugins/jqplot-trendline-js.html -------------------------------------------------------------------------------- /jqplot/docs/files/usage-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/files/usage-txt.html -------------------------------------------------------------------------------- /jqplot/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index.html -------------------------------------------------------------------------------- /jqplot/docs/index/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Classes.html -------------------------------------------------------------------------------- /jqplot/docs/index/Files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Files.html -------------------------------------------------------------------------------- /jqplot/docs/index/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Functions.html -------------------------------------------------------------------------------- /jqplot/docs/index/General.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General.html -------------------------------------------------------------------------------- /jqplot/docs/index/General2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General2.html -------------------------------------------------------------------------------- /jqplot/docs/index/General3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General3.html -------------------------------------------------------------------------------- /jqplot/docs/index/General4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General4.html -------------------------------------------------------------------------------- /jqplot/docs/index/General5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General5.html -------------------------------------------------------------------------------- /jqplot/docs/index/General6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General6.html -------------------------------------------------------------------------------- /jqplot/docs/index/General7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/General7.html -------------------------------------------------------------------------------- /jqplot/docs/index/Hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Hooks.html -------------------------------------------------------------------------------- /jqplot/docs/index/Properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Properties.html -------------------------------------------------------------------------------- /jqplot/docs/index/Properties2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Properties2.html -------------------------------------------------------------------------------- /jqplot/docs/index/Properties3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Properties3.html -------------------------------------------------------------------------------- /jqplot/docs/index/Properties4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Properties4.html -------------------------------------------------------------------------------- /jqplot/docs/index/Properties5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Properties5.html -------------------------------------------------------------------------------- /jqplot/docs/index/Properties6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/index/Properties6.html -------------------------------------------------------------------------------- /jqplot/docs/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/javascript/main.js -------------------------------------------------------------------------------- /jqplot/docs/javascript/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/javascript/searchdata.js -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesA.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesD.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesG.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesH.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesJ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesJ.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesL.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesS.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesSymbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesSymbols.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesT.html -------------------------------------------------------------------------------- /jqplot/docs/search/ClassesV.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/ClassesV.html -------------------------------------------------------------------------------- /jqplot/docs/search/FilesJ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FilesJ.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsC.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsD.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsG.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsI.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsM.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsN.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsQ.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsR.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsS.html -------------------------------------------------------------------------------- /jqplot/docs/search/FunctionsZ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/FunctionsZ.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralA.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralB.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralC.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralD.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralE.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralF.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralG.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralH.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralI.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralJ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralJ.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralL.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralM.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralN.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralO.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralP.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralQ.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralR.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralS.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralSymbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralSymbols.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralT.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralU.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralU.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralV.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralV.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralW.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralX.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralY.html -------------------------------------------------------------------------------- /jqplot/docs/search/GeneralZ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/GeneralZ.html -------------------------------------------------------------------------------- /jqplot/docs/search/HooksA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/HooksA.html -------------------------------------------------------------------------------- /jqplot/docs/search/HooksE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/HooksE.html -------------------------------------------------------------------------------- /jqplot/docs/search/HooksJ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/HooksJ.html -------------------------------------------------------------------------------- /jqplot/docs/search/HooksP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/HooksP.html -------------------------------------------------------------------------------- /jqplot/docs/search/NoResults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/NoResults.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesA.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesB.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesC.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesD.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesE.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesF.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesG.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesH.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesI.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesL.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesM.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesN.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesO.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesP.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesR.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesS.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesT.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesU.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesU.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesV.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesV.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesW.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesX.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesX.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesY.html -------------------------------------------------------------------------------- /jqplot/docs/search/PropertiesZ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/search/PropertiesZ.html -------------------------------------------------------------------------------- /jqplot/docs/styles/1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/styles/1.css -------------------------------------------------------------------------------- /jqplot/docs/styles/2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/styles/2.css -------------------------------------------------------------------------------- /jqplot/docs/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/docs/styles/main.css -------------------------------------------------------------------------------- /jqplot/examples/KCPsample4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/KCPsample4.csv -------------------------------------------------------------------------------- /jqplot/examples/ages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/ages.json -------------------------------------------------------------------------------- /jqplot/examples/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/ajax-loader.gif -------------------------------------------------------------------------------- /jqplot/examples/area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/area.html -------------------------------------------------------------------------------- /jqplot/examples/axisLabelTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/axisLabelTests.html -------------------------------------------------------------------------------- /jqplot/examples/axisLabelsRotatedText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/axisLabelsRotatedText.html -------------------------------------------------------------------------------- /jqplot/examples/axisScalingForceTickAt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/axisScalingForceTickAt.html -------------------------------------------------------------------------------- /jqplot/examples/bandedLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/bandedLine.html -------------------------------------------------------------------------------- /jqplot/examples/bar-charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/bar-charts.html -------------------------------------------------------------------------------- /jqplot/examples/barLineAnimated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/barLineAnimated.html -------------------------------------------------------------------------------- /jqplot/examples/barTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/barTest.html -------------------------------------------------------------------------------- /jqplot/examples/bezierCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/bezierCurve.html -------------------------------------------------------------------------------- /jqplot/examples/blockPlot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/blockPlot.html -------------------------------------------------------------------------------- /jqplot/examples/bubble-plots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/bubble-plots.html -------------------------------------------------------------------------------- /jqplot/examples/bubbleChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/bubbleChart.html -------------------------------------------------------------------------------- /jqplot/examples/candlestick-charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/candlestick-charts.html -------------------------------------------------------------------------------- /jqplot/examples/candlestick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/candlestick.html -------------------------------------------------------------------------------- /jqplot/examples/canvas-overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/canvas-overlay.html -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/bar-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/bar-alpha.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/bar-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/bar-opacity.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/bar-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/bar-pointer.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/bar.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/map-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/map-opacity.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/map-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/map-pointer.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/map.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/preview-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/preview-opacity.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/images/ui-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/images/ui-colorpicker.png -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/index.html -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/jquery.colorpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/jquery.colorpicker.css -------------------------------------------------------------------------------- /jqplot/examples/colorpicker/jquery.colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/colorpicker/jquery.colorpicker.js -------------------------------------------------------------------------------- /jqplot/examples/cursor-highlighter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/cursor-highlighter.html -------------------------------------------------------------------------------- /jqplot/examples/customHighlighterCursorTrendline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/customHighlighterCursorTrendline.html -------------------------------------------------------------------------------- /jqplot/examples/dashboardWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/dashboardWidget.html -------------------------------------------------------------------------------- /jqplot/examples/dashedLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/dashedLines.html -------------------------------------------------------------------------------- /jqplot/examples/data-renderers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/data-renderers.html -------------------------------------------------------------------------------- /jqplot/examples/date-axes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/date-axes.html -------------------------------------------------------------------------------- /jqplot/examples/dateAxisLogAxisZooming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/dateAxisLogAxisZooming.html -------------------------------------------------------------------------------- /jqplot/examples/dateAxisRenderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/dateAxisRenderer.html -------------------------------------------------------------------------------- /jqplot/examples/draw-rectangles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/draw-rectangles.html -------------------------------------------------------------------------------- /jqplot/examples/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/example.js -------------------------------------------------------------------------------- /jqplot/examples/example.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/example.min.js -------------------------------------------------------------------------------- /jqplot/examples/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/examples.css -------------------------------------------------------------------------------- /jqplot/examples/examples.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/examples.min.css -------------------------------------------------------------------------------- /jqplot/examples/fillBetweenLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/fillBetweenLines.html -------------------------------------------------------------------------------- /jqplot/examples/hiddenPlotsInTabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/hiddenPlotsInTabs.html -------------------------------------------------------------------------------- /jqplot/examples/images/bar-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/bar-alpha.png -------------------------------------------------------------------------------- /jqplot/examples/images/bar-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/bar-opacity.png -------------------------------------------------------------------------------- /jqplot/examples/images/bar-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/bar-pointer.png -------------------------------------------------------------------------------- /jqplot/examples/images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/bar.png -------------------------------------------------------------------------------- /jqplot/examples/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/logo.jpg -------------------------------------------------------------------------------- /jqplot/examples/images/map-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/map-opacity.png -------------------------------------------------------------------------------- /jqplot/examples/images/map-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/map-pointer.png -------------------------------------------------------------------------------- /jqplot/examples/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/map.png -------------------------------------------------------------------------------- /jqplot/examples/images/preview-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/preview-opacity.png -------------------------------------------------------------------------------- /jqplot/examples/images/ui-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/images/ui-colorpicker.png -------------------------------------------------------------------------------- /jqplot/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/index.html -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/jquery-ui.css -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/smoothness/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/smoothness/jquery-ui.min.css -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui-1.9pre.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui-1.9pre.css -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui-1.9pre.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui-1.9pre.min.css -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui.css -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/css/ui-lightness/jquery-ui.min.css -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/js/jquery-ui.min.js -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/js/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/js/jquery.effects.blind.min.js -------------------------------------------------------------------------------- /jqplot/examples/jquery-ui/js/jquery.effects.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/jquery-ui/js/jquery.effects.core.min.js -------------------------------------------------------------------------------- /jqplot/examples/jsondata.txt: -------------------------------------------------------------------------------- 1 | [[1, 3, 2, 4, 6, 9]] -------------------------------------------------------------------------------- /jqplot/examples/kcp.print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp.print.js -------------------------------------------------------------------------------- /jqplot/examples/kcp_area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_area.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_area2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_area2.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_cdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_cdf.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_engel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_engel.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_lorenz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_lorenz.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_pdf.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_pyramid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_pyramid.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_pyramid2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_pyramid2.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_pyramid_by_age.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_pyramid_by_age.html -------------------------------------------------------------------------------- /jqplot/examples/kcp_pyramid_by_age.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_pyramid_by_age.php -------------------------------------------------------------------------------- /jqplot/examples/kcp_quintiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/kcp_quintiles.html -------------------------------------------------------------------------------- /jqplot/examples/line-charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/line-charts.html -------------------------------------------------------------------------------- /jqplot/examples/mekkoCharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/mekkoCharts.html -------------------------------------------------------------------------------- /jqplot/examples/meterGauge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/meterGauge.html -------------------------------------------------------------------------------- /jqplot/examples/multipleBarColors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/multipleBarColors.html -------------------------------------------------------------------------------- /jqplot/examples/nav.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/nav.inc -------------------------------------------------------------------------------- /jqplot/examples/pie-donut-charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/pie-donut-charts.html -------------------------------------------------------------------------------- /jqplot/examples/pieTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/pieTest.html -------------------------------------------------------------------------------- /jqplot/examples/pieTest2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/pieTest2.js -------------------------------------------------------------------------------- /jqplot/examples/pieTest4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/pieTest4.html -------------------------------------------------------------------------------- /jqplot/examples/point-labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/point-labels.html -------------------------------------------------------------------------------- /jqplot/examples/quintiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/quintiles.json -------------------------------------------------------------------------------- /jqplot/examples/resizablePlot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/resizablePlot.html -------------------------------------------------------------------------------- /jqplot/examples/rotated-tick-labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/rotated-tick-labels.html -------------------------------------------------------------------------------- /jqplot/examples/rotatedTickLabelsZoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/rotatedTickLabelsZoom.html -------------------------------------------------------------------------------- /jqplot/examples/selectorSyntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/selectorSyntax.html -------------------------------------------------------------------------------- /jqplot/examples/smoothedLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/smoothedLine.html -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/LGPL-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/LGPL-LICENSE -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/MIT-LICENSE -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shAutoloader.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shAutoloader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shAutoloader.min.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shBrushJScript.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shBrushJScript.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shBrushJScript.min.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shBrushXml.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shBrushXml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shBrushXml.min.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shCore.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/scripts/shCore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/scripts/shCore.min.js -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shCore.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shCore.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shCore.min.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shCoreDefault.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shCoreDefault.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shCoreDefault.min.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shThemeDefault.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shThemeDefault.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shThemeDefault.min.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shThemejqPlot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shThemejqPlot.css -------------------------------------------------------------------------------- /jqplot/examples/syntaxhighlighter/styles/shThemejqPlot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/syntaxhighlighter/styles/shThemejqPlot.min.css -------------------------------------------------------------------------------- /jqplot/examples/theming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/theming.html -------------------------------------------------------------------------------- /jqplot/examples/topbanner.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/topbanner.inc -------------------------------------------------------------------------------- /jqplot/examples/waterfall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/waterfall.html -------------------------------------------------------------------------------- /jqplot/examples/waterfall2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/waterfall2.html -------------------------------------------------------------------------------- /jqplot/examples/yahooData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/yahooData.js -------------------------------------------------------------------------------- /jqplot/examples/yahooData.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/yahooData.min.js -------------------------------------------------------------------------------- /jqplot/examples/zoom1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/zoom1.html -------------------------------------------------------------------------------- /jqplot/examples/zoomOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/zoomOptions.html -------------------------------------------------------------------------------- /jqplot/examples/zoomProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/zoomProxy.html -------------------------------------------------------------------------------- /jqplot/examples/zooming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/examples/zooming.html -------------------------------------------------------------------------------- /jqplot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/excanvas.js -------------------------------------------------------------------------------- /jqplot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/excanvas.min.js -------------------------------------------------------------------------------- /jqplot/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/gpl-2.0.txt -------------------------------------------------------------------------------- /jqplot/jqPlotCssStyling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jqPlotCssStyling.txt -------------------------------------------------------------------------------- /jqplot/jqPlotOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jqPlotOptions.txt -------------------------------------------------------------------------------- /jqplot/jquery.jqplot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jquery.jqplot.css -------------------------------------------------------------------------------- /jqplot/jquery.jqplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jquery.jqplot.js -------------------------------------------------------------------------------- /jqplot/jquery.jqplot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jquery.jqplot.min.css -------------------------------------------------------------------------------- /jqplot/jquery.jqplot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jquery.jqplot.min.js -------------------------------------------------------------------------------- /jqplot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jquery.js -------------------------------------------------------------------------------- /jqplot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/jquery.min.js -------------------------------------------------------------------------------- /jqplot/optionsTutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/optionsTutorial.txt -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.BezierCurveRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.BezierCurveRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.BezierCurveRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.BezierCurveRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.barRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.barRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.barRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.barRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.blockRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.blockRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.blockRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.blockRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.bubbleRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.bubbleRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.bubbleRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.bubbleRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasAxisLabelRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasAxisTickRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasAxisTickRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasOverlay.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasOverlay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasOverlay.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasTextRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasTextRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.canvasTextRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.canvasTextRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.categoryAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.categoryAxisRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.categoryAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.categoryAxisRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.ciParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.ciParser.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.ciParser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.ciParser.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.cursor.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.cursor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.cursor.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.dateAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.dateAxisRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.dateAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.dateAxisRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.donutRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.donutRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.donutRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.donutRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.dragable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.dragable.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.dragable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.dragable.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.enhancedLegendRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.enhancedLegendRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.enhancedLegendRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.enhancedLegendRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.funnelRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.funnelRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.funnelRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.funnelRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.highlighter.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.highlighter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.highlighter.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.json2.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.json2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.json2.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.logAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.logAxisRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.logAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.logAxisRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.mekkoAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.mekkoAxisRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.mekkoAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.mekkoAxisRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.mekkoRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.mekkoRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.mekkoRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.mekkoRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.meterGaugeRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.meterGaugeRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.meterGaugeRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.meterGaugeRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.mobile.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.mobile.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.ohlcRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.ohlcRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.ohlcRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.ohlcRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pieRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pieRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pieRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pieRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pointLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pointLabels.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pointLabels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pointLabels.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pyramidAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pyramidAxisRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pyramidAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pyramidAxisRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pyramidGridRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pyramidGridRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pyramidGridRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pyramidGridRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pyramidRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pyramidRenderer.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.pyramidRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.pyramidRenderer.min.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.trendline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.trendline.js -------------------------------------------------------------------------------- /jqplot/plugins/jqplot.trendline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/plugins/jqplot.trendline.min.js -------------------------------------------------------------------------------- /jqplot/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/jqplot/usage.txt -------------------------------------------------------------------------------- /m4/compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/m4/compiler.m4 -------------------------------------------------------------------------------- /m4/linker.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/m4/linker.m4 -------------------------------------------------------------------------------- /m4/tp-compiler-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/m4/tp-compiler-flag.m4 -------------------------------------------------------------------------------- /m4/tp-compiler-warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/m4/tp-compiler-warnings.m4 -------------------------------------------------------------------------------- /m4/tp-linker-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/m4/tp-linker-flag.m4 -------------------------------------------------------------------------------- /openglucose.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/openglucose.appdata.xml -------------------------------------------------------------------------------- /openglucose.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/openglucose.desktop -------------------------------------------------------------------------------- /src/average-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/average-chart.js -------------------------------------------------------------------------------- /src/base-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/base-device.c -------------------------------------------------------------------------------- /src/base-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/base-device.h -------------------------------------------------------------------------------- /src/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/chart.html -------------------------------------------------------------------------------- /src/device-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/device-widget.c -------------------------------------------------------------------------------- /src/device-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/device-widget.h -------------------------------------------------------------------------------- /src/dummy-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/dummy-device.c -------------------------------------------------------------------------------- /src/dummy-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/dummy-device.h -------------------------------------------------------------------------------- /src/insulinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/insulinx.c -------------------------------------------------------------------------------- /src/insulinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/insulinx.h -------------------------------------------------------------------------------- /src/main-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/main-window.c -------------------------------------------------------------------------------- /src/main-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/main-window.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/main.c -------------------------------------------------------------------------------- /src/modal-day-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/modal-day-chart.js -------------------------------------------------------------------------------- /src/openglucose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/openglucose.css -------------------------------------------------------------------------------- /src/openglucose.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/openglucose.gresource.xml -------------------------------------------------------------------------------- /src/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/record.c -------------------------------------------------------------------------------- /src/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xclaesse/OpenGlucose/HEAD/src/record.h --------------------------------------------------------------------------------